Skip to content

Commit 3599e12

Browse files
committed
Merge branch 'vlaeva/action-bar-refactoring' of https://github.com/nativescript/nativescript-angular into vlaeva/action-bar-refactoring
2 parents 13c5dfb + 39957a1 commit 3599e12

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: nativescript-angular/directives/action-bar.ts

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
NavigationButton,
77
} from "tns-core-modules/ui/action-bar";
88
import { Page } from "tns-core-modules/ui/page";
9-
import { View } from "tns-core-modules/ui/core/view";
109

1110
import { isBlank } from "../lang-facade";
1211
import {

Diff for: nativescript-angular/view-util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export class ViewUtil {
218218
}
219219

220220
// NOTE: This one is O(n) - use carefully
221-
private getChildIndex(parent: any, child: NgView) {
221+
public getChildIndex(parent: any, child: NgView) {
222222
if (isLayout(parent)) {
223223
return parent.getChildIndex(child);
224224
} else if (isContentView(parent)) {

0 commit comments

Comments
 (0)