2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

:for debug only

git-svn-id: https://svn.fhem.de/fhem/trunk@27511 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2023-05-02 12:27:33 +00:00
parent 28ac25aa85
commit 21827bdfda

View File

@ -4,8 +4,8 @@ var cm_loaded = 0;
var cm_active = 0;
var cm_attr = {
matchBrackets: true,
bracefold: true;
commentfold: true;
bracefold: true,
commentfold: true,
foldCode: true,
foldGutter: true,
indentFold: true,
@ -97,7 +97,9 @@ function AddCodeMirror(e, cb) {
cm_active++; loadScript("codemirror/foldcode.js", function(){cm_loaded++;} );
}
if (cm_attr.foldGutter) {
cm_active++; loadScript("codemirror/foldgutter.js", function(){cm_loaded++;} );
cm_active++;
loadLink("codemirror/foldgutter.css");
loadScript("codemirror/foldgutter.js", function(){cm_loaded++;} );
}
if (cm_attr.indentFold) {
cm_active++; loadScript("codemirror/indent-fold.js", function(){cm_loaded++;} );