Fix for #376 - modal scope error on remove

This commit is contained in:
Max Lynch
2014-01-10 10:01:32 -06:00
parent 48393f4f12
commit 35abb61493

View File

@@ -28,9 +28,10 @@ angular.module('ionic.service.modal', ['ionic.service.templateLoad', 'ngAnimate'
// Remove and destroy the modal scope
remove: function() {
var element = angular.element(this.el);
var self = this,
element = angular.element(this.el);
$animate.leave(angular.element(this.el), function() {
scope.$destroy();
self.scope.$destroy();
});
}
});