0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 11:32:39 +00:00

Expose CodeMirror functions in codeEditor.jsx

This commit is contained in:
G.Ambatte
2021-10-05 20:24:45 +13:00
parent 09b1543660
commit fbabae8793

View File

@@ -114,10 +114,13 @@ const CodeEditor = createClass({
this.codeMirror.refresh(); this.codeMirror.refresh();
}, },
redo : function(){ redo : function(){
this.codeMirror.redo(); return this.codeMirror.redo();
}, },
undo : function(){ undo : function(){
this.codeMirror.undo(); return this.codeMirror.undo();
},
historySize : function(){
return this.codeMirror.doc.historySize();
}, },
//----------------------// //----------------------//