mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(): prefix private methods
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user