0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 15:52: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();
},
redo : function(){
this.codeMirror.redo();
return this.codeMirror.redo();
},
undo : function(){
this.codeMirror.undo();
return this.codeMirror.undo();
},
historySize : function(){
return this.codeMirror.doc.historySize();
},
//----------------------//