diff --git a/js/ext/angular/src/service/ionicView.js b/js/ext/angular/src/service/ionicView.js index 307aafbaf36..f43556e4213 100644 --- a/js/ext/angular/src/service/ionicView.js +++ b/js/ext/angular/src/service/ionicView.js @@ -105,7 +105,7 @@ angular.module('ionic.service.view', ['ui.router', 'ionic.service.platform']) }; View.prototype.destroy = function() { if(this.scope) { - this.scope.destroy && this.scope.destroy(); + this.scope.$destroy && this.scope.$destroy(); this.scope = null; } };