File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -394,8 +394,9 @@ class CodeMirror extends ProxyHolder {
394
394
if (coverGutter != null ) options['coverGutter' ] = coverGutter;
395
395
if (noHScroll != null ) options['noHScroll' ] = noHScroll;
396
396
if (above != null ) options['above' ] = above;
397
- if (handleMouseEvents != null )
397
+ if (handleMouseEvents != null ) {
398
398
options['handleMouseEvents' ] = handleMouseEvents;
399
+ }
399
400
if (insertAt != null ) options['insertAt' ] = insertAt;
400
401
401
402
var l = line is LineHandle ? line.jsProxy : line;
@@ -928,8 +929,9 @@ class Doc extends ProxyHolder {
928
929
if (clearOnEnter != null ) options['clearOnEnter' ] = clearOnEnter;
929
930
if (clearWhenEmpty != null ) options['clearWhenEmpty' ] = clearWhenEmpty;
930
931
if (replacedWith != null ) options['replacedWith' ] = replacedWith;
931
- if (handleMouseEvents != null )
932
+ if (handleMouseEvents != null ) {
932
933
options['handleMouseEvents' ] = handleMouseEvents;
934
+ }
933
935
if (readOnly != null ) options['readOnly' ] = readOnly;
934
936
if (addToHistory != null ) options['addToHistory' ] = addToHistory;
935
937
if (startStyle != null ) options['startStyle' ] = startStyle;
You can’t perform that action at this time.
0 commit comments