1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

treat appcache files as shell (uibuilder support)

This commit is contained in:
Steve-Mcl 2021-05-02 23:00:35 +01:00
parent 1f4f64a7c0
commit 10465c5d68

View File

@ -719,6 +719,9 @@ RED.editor.codeEditor.monaco = (function() {
case "vue": case "vue":
mode = "html"; mode = "html";
break; break;
case "appcache":
mode = "shell";
break;
//TODO: add other compatability types. //TODO: add other compatability types.
} }
return mode; return mode;