aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/scope.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/scope.js')
-rw-r--r--src/service/scope.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/service/scope.js b/src/service/scope.js
index 24313620..ef1b7b93 100644
--- a/src/service/scope.js
+++ b/src/service/scope.js
@@ -450,15 +450,12 @@ function $RootScopeProvider(){
* scope and its children. Removal also implies that the current scope is eligible for garbage
* collection.
*
- * The destructing scope emits an `$destroy` {@link angular.module.ng.$rootScope.Scope#$emit event}.
- *
* The `$destroy()` is usually used by directives such as
* {@link angular.module.ng.$compileProvider.directive.ng-repeat ng-repeat} for managing the unrolling of the loop.
*
*/
$destroy: function() {
if (this.$root == this) return; // we can't remove the root node;
- this.$emit('$destroy');
var parent = this.$parent;
if (parent.$$childHead == this) parent.$$childHead = this.$$nextSibling;