fix(slidingGesture): remove dup config

This commit is contained in:
Adam Bradley
2015-11-07 21:02:26 -06:00
parent 702c42630f
commit 4b4f54afd3

View File

@ -9,8 +9,7 @@ export class ItemSlidingGesture extends DragGesture {
constructor(list: List, listEle) { constructor(list: List, listEle) {
super(listEle, { super(listEle, {
direction: 'x', direction: 'x',
threshold: 40, threshold: 40
threshold: list.width()
}); });
this.data = {}; this.data = {};