diff --git a/dist/js/ionic.js b/dist/js/ionic.js index 1f292b88eb..8d99b1f80e 100644 --- a/dist/js/ionic.js +++ b/dist/js/ionic.js @@ -1972,6 +1972,10 @@ window.ionic = { ReorderDrag.prototype = new DragOp(); ReorderDrag.prototype.start = function(e) { }; + ReorderDrag.prototype.drag = function(e) { + }; + ReorderDrag.prototype.end = function(e) { + }; /** * The ListView handles a list of items. It will process drag animations, edit mode, diff --git a/js/views/listView.js b/js/views/listView.js index c67ee654fb..d7aced8229 100644 --- a/js/views/listView.js +++ b/js/views/listView.js @@ -137,6 +137,10 @@ ReorderDrag.prototype = new DragOp(); ReorderDrag.prototype.start = function(e) { }; + ReorderDrag.prototype.drag = function(e) { + }; + ReorderDrag.prototype.end = function(e) { + }; /** * The ListView handles a list of items. It will process drag animations, edit mode,