We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83b8bcf commit 150c1ceCopy full SHA for 150c1ce
nativescript-angular/animations/animation-engine.ts
@@ -90,7 +90,7 @@ export class NativeScriptAnimationEngine extends DomAnimationEngine {
90
// find all of the children that are currently animating and clear
91
// them out by destroying each of them.
92
let elms = [];
93
- element._eachLayoutView(child => {
+ (<any>element)._eachChildView(child => {
94
if (cssClasses(<NgView>child).get(MARKED_FOR_ANIMATION)) {
95
elms.push(child);
96
}
nativescript-angular/view-util.ts
@@ -211,7 +211,7 @@ export class ViewUtil {
211
let index = 0;
212
let found = false;
213
214
- parent._eachLayoutView(child => {
+ (<any>parent)._eachChildView(child => {
215
if (child === node) {
216
found = true;
217
0 commit comments