FIX: Should allow support for ember list view
This commit is contained in:
parent
1e730ccffe
commit
7fdaefcd86
|
@ -17786,6 +17786,7 @@ Ember.View = Ember.CoreView.extend(
|
|||
|
||||
if (priorState && priorState.exit) { priorState.exit(this); }
|
||||
if (currentState.enter) { currentState.enter(this); }
|
||||
if (state === 'inDOM') { delete Ember.meta(this).cache.element; }
|
||||
|
||||
if (children !== false) {
|
||||
this.forEachChildView(function(view) {
|
||||
|
|
|
@ -17605,6 +17605,7 @@ Ember.View = Ember.CoreView.extend(
|
|||
|
||||
if (priorState && priorState.exit) { priorState.exit(this); }
|
||||
if (currentState.enter) { currentState.enter(this); }
|
||||
if (state === 'inDOM') { delete Ember.meta(this).cache.element; }
|
||||
|
||||
if (children !== false) {
|
||||
this.forEachChildView(function(view) {
|
||||
|
|
Loading…
Reference in New Issue