Z
Results
2
comments of
Z
``` javascript // 重置 MyDropLoad.prototype.resetload = function(){ var me = this; if(me.direction == 'down' && me.upInsertDOM){ //这里me.$domUp.height() 可能已经变成0了,导致loading一直为true,无法继续再次滑动 me.$domUp.css({'height':'0'}).on('webkitTransitionEnd mozTransitionEnd transitionend',function(){ me.loading = false; me.upInsertDOM = false; $(this).remove(); fnRecoverContentHeight(me); });...
I have the same problem