Skip to content

Commit ed5c8b0

Browse files
committed
Merge branch 'ENYO-2652-mirsaes' of https://github.com/enyojs/layout into ENYO-2652-mirsaes
2 parents 85e5f78 + 7a913e8 commit ed5c8b0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/PulldownList/PulldownList.js

+9
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,15 @@ module.exports = kind(
403403
*/
404404
isSwipeable: function () {
405405
return !this.pully.get('showing') && List.prototype.isSwipeable.apply(this, arguments);
406+
},
407+
408+
/**
409+
* Prevent reordering while pully is showing
410+
*
411+
* @private
412+
*/
413+
shouldStartReordering: function () {
414+
return !this.pully.get('showing') && List.prototype.shouldStartReordering.apply(this, arguments);
406415
}
407416
});
408417

0 commit comments

Comments
 (0)