File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -182,18 +182,18 @@ function $RootScopeProvider(){
182
182
} else {
183
183
// Only create a child scope class if somebody asks for one,
184
184
// but cache it to allow the VM to optimize lookups.
185
- if ( ! this . $$childScopeClass ) {
186
- this . $$childScopeClass = function ( ) {
185
+ if ( ! this . $$ChildScope ) {
186
+ this . $$ChildScope = function ChildScope ( ) {
187
187
this . $$watchers = this . $$nextSibling =
188
188
this . $$childHead = this . $$childTail = null ;
189
189
this . $$listeners = { } ;
190
190
this . $$listenerCount = { } ;
191
191
this . $id = nextUid ( ) ;
192
- this . $$childScopeClass = null ;
192
+ this . $$ChildScope = null ;
193
193
} ;
194
- this . $$childScopeClass . prototype = this ;
194
+ this . $$ChildScope . prototype = this ;
195
195
}
196
- child = new this . $$childScopeClass ( ) ;
196
+ child = new this . $$ChildScope ( ) ;
197
197
}
198
198
child [ 'this' ] = child ;
199
199
child . $parent = this ;
You can’t perform that action at this time.
0 commit comments