chore(components): ngmodule updates

This commit is contained in:
Adam Bradley
2016-09-13 17:07:33 -05:00
parent 16df3a4aab
commit 52ada1ca6d
50 changed files with 927 additions and 790 deletions

View File

@ -77,11 +77,11 @@ import { Platform } from '../../platform/platform';
*
* ```ts
* toggleLeftMenu() {
* this.menu.toggle();
* this.menuCtrl.toggle();
* }
*
* toggleRightMenu() {
* this.menu.toggle('right');
* this.menuCtrl.toggle('right');
* }
* ```
*
@ -101,8 +101,8 @@ import { Platform } from '../../platform/platform';
*
* ```ts
* enableAuthenticatedMenu() {
* this.menu.enable(true, 'authenticated');
* this.menu.enable(false, 'unauthenticated');
* this.menuCtrl.enable(true, 'authenticated');
* this.menuCtrl.enable(false, 'unauthenticated');
* }
* ```
*