kopia lustrzana https://github.com/c9/core
Merge pull request +10599 from c9/fix/various
Fix issues with standalone versionpull/223/head
commit
d6cfd28bb6
|
@ -68,7 +68,9 @@ var WorkerClient = function(topLevelNamespaces, mod, classname, workerUrl) {
|
||||||
var blobURL = URL.createObjectURL(blob);
|
var blobURL = URL.createObjectURL(blob);
|
||||||
|
|
||||||
this.$worker = new Worker(blobURL);
|
this.$worker = new Worker(blobURL);
|
||||||
|
setTimeout(function() { // IE EDGE needs a timeout here
|
||||||
URL.revokeObjectURL(blobURL);
|
URL.revokeObjectURL(blobURL);
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
"c9.ide.local": "#a6e689e33b",
|
"c9.ide.local": "#a6e689e33b",
|
||||||
"c9.ide.find": "#35379124ca",
|
"c9.ide.find": "#35379124ca",
|
||||||
"c9.ide.find.infiles": "#c3bf17286d",
|
"c9.ide.find.infiles": "#c3bf17286d",
|
||||||
"c9.ide.find.replace": "#44772dd796",
|
"c9.ide.find.replace": "#8cbce45290",
|
||||||
"c9.ide.run.debug": "#dbe6c81252",
|
"c9.ide.run.debug": "#dbe6c81252",
|
||||||
"c9.automate": "#47e2c429c9",
|
"c9.automate": "#47e2c429c9",
|
||||||
"c9.ide.ace.emmet": "#6dc4585e02",
|
"c9.ide.ace.emmet": "#6dc4585e02",
|
||||||
|
|
|
@ -130,7 +130,7 @@ function plugin(options, imports, register) {
|
||||||
pid: 1
|
pid: 1
|
||||||
};
|
};
|
||||||
req.session = {};
|
req.session = {};
|
||||||
next();
|
api.authenticate()(req, res, next);
|
||||||
},
|
},
|
||||||
previewHandler.getProxyUrl(function() {
|
previewHandler.getProxyUrl(function() {
|
||||||
return {
|
return {
|
||||||
|
|
Ładowanie…
Reference in New Issue