From 95c9521ed856644811ebdbf7124acdfcfd251322 Mon Sep 17 00:00:00 2001 From: Flyn Tse Date: Thu, 23 Mar 2017 15:25:45 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20Issue=20#68=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E5=88=B7=E6=96=B0=E5=90=8E=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E5=86=8D=E5=8A=A0=E8=BD=BD=E6=9B=B4=E5=A4=9A=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 下拉刷新后,若单页数据无法占满显示区域,上拉直接被锁定,无法加载更多数据 --- dist/dropload.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/dropload.js b/dist/dropload.js index 4eb3670..e82345a 100644 --- a/dist/dropload.js +++ b/dist/dropload.js @@ -287,6 +287,7 @@ me.upInsertDOM = false; $(this).remove(); fnRecoverContentHeight(me); + fnAutoLoad(me); }); }else if(me.direction == 'up'){ me.loading = false; @@ -310,4 +311,4 @@ 'transition':'all '+num+'ms' }); } -})(window.Zepto || window.jQuery); \ No newline at end of file +})(window.Zepto || window.jQuery);