diff --git a/addon/mode/simple.js b/addon/mode/simple.js index a4a86b9a657d27b6831ac8558a6c25707a380992..de702a3dd530099ff8a596e16c0c9fc8cf187886 100644 --- a/addon/mode/simple.js +++ b/addon/mode/simple.js @@ -11,9 +11,9 @@ })(function(CodeMirror) { "use strict"; - CodeMirror.defineSimpleMode = function(name, states, props) { + CodeMirror.defineSimpleMode = function(name, states) { CodeMirror.defineMode(name, function(config) { - return CodeMirror.simpleMode(config, states, props); + return CodeMirror.simpleMode(config, states); }); };