X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/f938afb8ab4cb091d12e0ef0311eaea14b774798..1896ffefd4c448d4445bb510e9ac5992a8f20361:/redakcja/static/js/lib/codemirror/codemirror.js diff --git a/redakcja/static/js/lib/codemirror/codemirror.js b/redakcja/static/js/lib/codemirror/codemirror.js index 8c62dab9..8475989c 100644 --- a/redakcja/static/js/lib/codemirror/codemirror.js +++ b/redakcja/static/js/lib/codemirror/codemirror.js @@ -177,8 +177,8 @@ var CodeMirror = (function(){ replaceChars: function(text, start, end) { this.editor.replaceChars(text, start, end); }, - getSearchCursor: function(string, fromCursor) { - return this.editor.getSearchCursor(string, fromCursor); + getSearchCursor: function(string, fromCursor, regexp, case_sensitive) { + return this.editor.getSearchCursor(string, fromCursor, regexp, case_sensitive); }, undo: function() {this.editor.history.undo();},