Skip to content

Commit 6ac38e0

Browse files
committed
Merge pull request #52 from sijmenvos/master
Hide and destroy modal when scope gets destroyed
2 parents 97a5ad8 + 0c48ec1 commit 6ac38e0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/modal/modal.js

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ angular.module('angularify.semantic.modal', [])
2020
}, function (modelValue){
2121
element.modal(modelValue ? 'show' : 'hide');
2222
});
23+
scope.$on('$destroy', function() {
24+
element.modal('hide');
25+
element.remove();
26+
});
2327
}
2428
}
2529
});

0 commit comments

Comments
 (0)