From 7557c58ea6ab55f2a635775c3e0029e84c182e85 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Wed, 4 Feb 2015 10:36:27 -0600 Subject: [PATCH] fix(listView): ionic.extend not extend --- js/views/listView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/listView.js b/js/views/listView.js index 20807151c0..f147d8b51e 100644 --- a/js/views/listView.js +++ b/js/views/listView.js @@ -173,7 +173,7 @@ if (!_this._lastDrag) { _this._lastDrag = {}; } - extend(_this._lastDrag, _this._currentDrag); + ionic.extend(_this._lastDrag, _this._currentDrag); if (_this._currentDrag) { _this._currentDrag.buttons = null; _this._currentDrag.content = null;