Blockbench.queries = {}; (function() { let query_string = location.search || location.hash; if (query_string) { query_string = decodeURIComponent(query_string.substring(1)); let queries = query_string.split('&'); queries.forEach(string => { let [key, value] = string.split(/=\s*(.+)/); Blockbench.queries[key] = value || true; }) } })() function initializeWebApp() { $(document.body).on('click', 'a[href]', (event) => { event.preventDefault(); window.open(event.target.href, '_blank'); }); if (location.host == 'blockbench-dev.netlify.app') { let button = $(` Hosted by `); button.insertBefore('#web_download_button'); } if (!Blockbench.isTouch && !Blockbench.isPWA) { $('#web_download_button').show() } if (Blockbench.browser == 'firefox') { document.body.style.imageRendering = 'crisp-edges' } } try { window.matchMedia('(display-mode: standalone)').addEventListener('change', (evt) => { if (!Blockbench.isMobile) $('#web_download_button').toggle(!evt.matches); }); } catch (err) { if (!Blockbench.isMobile) $('#web_download_button').hide(); } function loadInfoFromURL() { if (Blockbench.queries.session) { EditSession.token = Blockbench.queries.session; BarItems.edit_session.click(); } if (Blockbench.queries.m) { $.getJSON(`https://blckbn.ch/api/models/${Blockbench.queries.m}`, (model) => { Codecs.project.load(model, {path: ''}); }) } } //Misc window.onbeforeunload = function() { let unsaved_projects = ModelProject.all.find(project => !project.saved); if (unsaved_projects) { return 'Unsaved Changes'; } else { Blockbench.dispatchEvent('before_closing') if (Project.EditSession) Project.EditSession.quit() } }