MOBILE-2333 siteplugins: Fix page params in main menu plugins

main
Dani Palou 2018-03-22 12:40:54 +01:00
parent e7f55cfca2
commit 5318920ac2
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ export class CoreMainMenuMorePage implements OnDestroy {
* @param {CoreMainMenuHandlerData} handler Handler to open.
*/
openHandler(handler: CoreMainMenuHandlerData): void {
this.navCtrl.push(handler.page);
this.navCtrl.push(handler.page, handler.pageParams);
}
/**

View File

@ -1,6 +1,6 @@
<ion-header>
<ion-navbar>
<ion-title>{{ title }}</ion-title>
<ion-title>{{ title | translate }}</ion-title>
<ion-buttons end>
<!-- If the site plugin defines some buttons using core-nav-buttons, they will be added here. -->