0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

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 9c4f427340

View file

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