mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
chore(): update to latest stencil
This commit is contained in:
@ -11,10 +11,6 @@ export class App {
|
||||
document.title = title;
|
||||
}
|
||||
|
||||
isScrolling(): boolean {
|
||||
return isScrollingImpl(this);
|
||||
}
|
||||
|
||||
getRootNavs(): PublicNav[] {
|
||||
return getRootNavsImpl(this);
|
||||
}
|
||||
@ -46,13 +42,6 @@ export class App {
|
||||
}
|
||||
}
|
||||
|
||||
export function isScrollingImpl(app: App) {
|
||||
if (app._element && app._element.isScrolling) {
|
||||
return app._element.isScrolling();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
export function getRootNavsImpl(app: App) {
|
||||
if (app._element && app._element.getRootNavs) {
|
||||
return app._element.getRootNavs();
|
||||
|
||||
Reference in New Issue
Block a user