Merge pull request #3108 from novaugust/touch-editor-off

Add off as a noop function to touch editor.
This commit is contained in:
Hannah Wolfe 2014-06-25 17:06:38 +01:00
commit b71e99a333

View File

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