diff --git a/src/hub.html b/src/hub.html index d2c83b46a41a107ec32a1b1f477aff555b8e007b..62d4984389c245fcbba362f07292d16b23864bd1 100644 --- a/src/hub.html +++ b/src/hub.html @@ -17,14 +17,6 @@ <% } else { %> <script src="https://cdn.rawgit.com/aframevr/aframe/3e7a4b3/dist/aframe-master.js" integrity="sha384-EaMOuyBOi9ERV/lVDwQgz/yFWBDWPsIju5Co6oCZZHXuvbLBO81yPWn80q0BbBn3" crossorigin="anonymous"></script> <% } %> - - - <!-- HACK: this has to run after A-Frame but before our bundle, since A-Frame blows away the local storage setting --> - <script> - if (/[&?]debug=true/.test(window.location.search) && typeof localStorage !== "undefined") { - localStorage.debug = "naf-janus-adapter:*"; - } - </script> </head> <body data-html-prefix="<%= HTML_PREFIX %>"> diff --git a/src/hub.js b/src/hub.js index 2b88247d07249c836adf7c72c7aefb5f38841803..e2d486de04ff55aee3661fc42acc6d1e8f8daa9e 100644 --- a/src/hub.js +++ b/src/hub.js @@ -1,3 +1,8 @@ +// HACK: this has to run after A-Frame but before our bundle, since A-Frame blows away the local storage setting --> +if (/[&?]debug=true/.test(window.location.search) && typeof localStorage !== "undefined") { + localStorage.debug = "naf-janus-adapter:*"; +} + import "./assets/stylesheets/hub.scss"; import moment from "moment-timezone"; import queryString from "query-string"; @@ -7,11 +12,6 @@ patchWebGLRenderingContext(); import "aframe-xr"; -// HACK: this has to run after A-Frame but before our bundle, since A-Frame blows away the local storage setting -if (/[&?]debug=true/.test(window.location.search) && typeof localStorage !== "undefined") { - localStorage.debug = "naf-janus-adapter:*"; -} - import "./vendor/GLTFLoader"; import "networked-aframe/src/index"; import "naf-janus-adapter";