fix(itemSliding): enableSlidingItems

This commit is contained in:
Adam Bradley
2015-12-09 21:55:17 -06:00
parent 1799d1f421
commit f520a6319c

View File

@ -77,8 +77,6 @@ export class List extends Ion {
} }
enableSlidingItems(shouldEnable) { enableSlidingItems(shouldEnable) {
if (this._init) {
if (this._enableSliding !== shouldEnable) { if (this._enableSliding !== shouldEnable) {
this._enableSliding = shouldEnable; this._enableSliding = shouldEnable;
@ -95,21 +93,11 @@ export class List extends Ion {
} }
} }
} }
}
closeSlidingItems() { closeSlidingItems() {
this.slidingGesture && this.slidingGesture.closeOpened(); this.slidingGesture && this.slidingGesture.closeOpened();
} }
/**
* @private
*/
ngAfterViewInit() {
this._init = true;
if (this._enableSliding) {
this.enableSlidingItems(true);
}
}
} }