0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Expose CodeMirror functions in codeEditor.jsx

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

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();
},
//----------------------//