chore(ionicScrollController): remove accidental test-code

This commit is contained in:
Andy Joslin
2014-03-11 16:49:29 -06:00
parent f3ca78620e
commit 69e54fe44e

View File

@@ -57,15 +57,3 @@ angular.module('ionic.ui.scroll')
}]);
})();
var popups = [];
function showPopup() {
var newPopupDeferred = $q.defer();
$q.all(popups).then(showThisPopup);
popups.push(newPopupDeferred);
function showThisPopup() {
popups.splice(popups.indexOf(newPopupDeferred.promise), 1);
}
}