Skip to content

Commit

Permalink
test(nav): fix ngfactory error
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Nov 30, 2016
1 parent a796786 commit 645e712
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/nav/test/worst-case/app-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const TEMPLATE: string = `
`;

export class Base {
constructor(private _name: string) { }
constructor(public _name: string) { }
ionViewWillLoad() {
log(`${this._name} willLoad`);
}
Expand Down
2 changes: 1 addition & 1 deletion src/util/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function setupEvents(platform: Platform, dom: DomController): Events {

let content = <HTMLElement>el.closest('.scroll-content');
if (content) {
var scroll = new ScrollView(content, dom);
var scroll = new ScrollView(content);
// We need to stop scrolling if it's happening and scroll up

content.style['WebkitBackfaceVisibility'] = 'hidden';
Expand Down

0 comments on commit 645e712

Please sign in to comment.