chore(): prefix private methods

This commit is contained in:
mhartington
2015-12-18 14:54:12 -05:00
parent 344619d7d7
commit 0f64bccc43
9 changed files with 35 additions and 36 deletions

View File

@@ -37,13 +37,13 @@ import {Menu} from './menu';
})
export class MenuClose {
constructor(private app: IonicApp) {}
constructor(private _app: IonicApp) {}
/**
* @private
*/
close() {
let menu = Menu.getById(this.app, this.menuClose);
let menu = Menu.getById(this._app, this.menuClose);
menu && menu.close();
}