mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Fix for #376 - modal scope error on remove
This commit is contained in:
5
js/ext/angular/src/service/ionicModal.js
vendored
5
js/ext/angular/src/service/ionicModal.js
vendored
@@ -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();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user