fixes #2 debug mode remote install
This commit is contained in:
parent
e8f966d3f7
commit
911b0e11ea
2 changed files with 14 additions and 10 deletions
|
|
@ -129,15 +129,19 @@ if (self.window) {
|
|||
// unified ball via /code/work.js -- otherwise, map "localhost" to "debug"
|
||||
// to debug unobfuscated code. if not, /js/ paths will 404.
|
||||
if (host !== 'grid.space' && host !== 'debug') {
|
||||
[
|
||||
"license","ext-n3d","ext-clip","add-array",
|
||||
"add-three","geo","geo-point","geo-debug","geo-bounds",
|
||||
"geo-line","geo-slope","geo-polygon","geo-polygons",
|
||||
"kiri-slice","kiri-slicer","kiri-driver-fdm","kiri-driver-cam",
|
||||
"kiri-driver-laser","kiri-widget","kiri-pack","kiri-print","kiri-codec"
|
||||
].forEach(function(scr) {
|
||||
importScripts(["/js/",scr,".js","/v"+ver].join(''));
|
||||
})
|
||||
try {
|
||||
[
|
||||
"license","ext-n3d","ext-clip","add-array",
|
||||
"add-three","geo","geo-point","geo-debug","geo-bounds",
|
||||
"geo-line","geo-slope","geo-polygon","geo-polygons",
|
||||
"kiri-slice","kiri-slicer","kiri-driver-fdm","kiri-driver-cam",
|
||||
"kiri-driver-laser","kiri-widget","kiri-pack","kiri-print","kiri-codec"
|
||||
].forEach(function(scr) {
|
||||
importScripts(["/js/",scr,".js","/v"+ver].join(''));
|
||||
})
|
||||
} catch (e) {
|
||||
console.log("unable to load worker scripts. kiri is likely in debug mode.");
|
||||
}
|
||||
} else {
|
||||
importScripts("/code/work.js/"+ver);
|
||||
base.debug.disable();
|
||||
|
|
|
|||
|
|
@ -484,7 +484,7 @@ function handleData(req, res, next) {
|
|||
* @param {Function} next
|
||||
*/
|
||||
function handleJS(req, res, next) {
|
||||
if (!req.gs.local) return reply404(req, res);
|
||||
if (!(req.gs.local || clearJS)) return reply404(req, res);
|
||||
|
||||
var spath = req.gs.path.substring(1),
|
||||
jspos = spath.indexOf(".js"),
|
||||
|
|
|
|||
Loading…
Reference in a new issue