chore(): update to latest stencil

This commit is contained in:
Manu Mtz.-Almeida
2018-03-03 16:11:52 +01:00
parent 8ff02c77ef
commit 8b605bf2d2
5 changed files with 235 additions and 4196 deletions

View File

@ -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();