typo: cancelInterval -> clearInterval

This commit is contained in:
Amir Nissim 2014-03-23 15:59:12 +02:00
parent cddf69e422
commit 34fb58d403

View File

@ -377,7 +377,7 @@
$scope.$on('$destroy', function () {
if (currentTimer) {
cancelInterval(currentTimer);
clearInterval(currentTimer);
currentTimer = null;
}
});