mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
prevent exception if ace is missing
This commit is contained in:
parent
60d97c887d
commit
71bdade7b9
@ -711,7 +711,7 @@ var RED = (function() {
|
|||||||
throw new Error("RED already initialised");
|
throw new Error("RED already initialised");
|
||||||
}
|
}
|
||||||
initialised = true;
|
initialised = true;
|
||||||
ace.require("ace/ext/language_tools");
|
if(window.ace) { window.ace.require("ace/ext/language_tools"); }
|
||||||
options = options || {};
|
options = options || {};
|
||||||
options.apiRootUrl = options.apiRootUrl || "";
|
options.apiRootUrl = options.apiRootUrl || "";
|
||||||
if (options.apiRootUrl && !/\/$/.test(options.apiRootUrl)) {
|
if (options.apiRootUrl && !/\/$/.test(options.apiRootUrl)) {
|
||||||
|
@ -2850,7 +2850,7 @@ var buildingEditDialog = false;
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
init: function() {
|
init: function() {
|
||||||
ace.config.set('basePath', 'vendor/ace');
|
if(window.ace) { window.ace.config.set('basePath', 'vendor/ace'); }
|
||||||
RED.tray.init();
|
RED.tray.init();
|
||||||
RED.actions.add("core:confirm-edit-tray", function() {
|
RED.actions.add("core:confirm-edit-tray", function() {
|
||||||
$(document.activeElement).blur();
|
$(document.activeElement).blur();
|
||||||
|
Loading…
Reference in New Issue
Block a user