0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

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;