mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Block loading ACE from cdn
This commit is contained in:
parent
d59bf84470
commit
a242475b38
@ -46,6 +46,14 @@ var RED = (function() {
|
|||||||
newScript.src = RED.settings.apiRootUrl+srcUrl;
|
newScript.src = RED.settings.apiRootUrl+srcUrl;
|
||||||
hasDeferred = true;
|
hasDeferred = true;
|
||||||
} else {
|
} else {
|
||||||
|
if (/\/ace.js$/.test(srcUrl) || /\/ext-language_tools.js$/.test(srcUrl)) {
|
||||||
|
// Block any attempts to load ace.js from a CDN - this will
|
||||||
|
// break the version of ace included in the editor.
|
||||||
|
// At the time of commit, the contrib-python nodes did this.
|
||||||
|
// This is a crude fix until the python nodes are fixed.
|
||||||
|
console.warn("Blocked attempt to load",srcUrl,"by",moduleId)
|
||||||
|
$(el).remove();
|
||||||
|
}
|
||||||
scriptCount--;
|
scriptCount--;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user