Add off as a noop function to touch editor.

Closes #3107
This commit is contained in:
Matt Enlow 2014-06-25 10:04:00 -06:00
parent df8e7263e1
commit 0bb4c1bd06

View File

@ -46,7 +46,8 @@ var createTouchEditor = function createTouchEditor() {
nthLine: noop,
refresh: noop,
selectLines: noop,
on: noop
on: noop,
off: noop
};
return TouchEditor;