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:
@@ -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();
|
||||
},
|
||||
//----------------------//
|
||||
|
||||
|
||||
Reference in New Issue
Block a user