fix(menu): all menus can be disabled

This commit is contained in:
Manu Mtz.-Almeida
2017-03-03 20:26:37 +01:00
parent 9e4c3a6e3e
commit dc53c8e9f6
4 changed files with 24 additions and 14 deletions

View File

@ -107,7 +107,7 @@ import { ViewController } from '../../navigation/view-controller';
* ```ts
* import { ViewChild } from '@angular/core';
* import { Slides } from 'ionic-angular';
* class MyPage {
* @ViewChild(Slides) slides: Slides;
*
@ -971,6 +971,12 @@ export class Slides extends Ion {
}
}
resize() {
if (this._init) {
}
}
/**
* Transition to the specified slide.
*