You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 31, 2021. It is now read-only.
Pull to refreh组件,同一个页面有使用多个时,初始化后的回调函数会被覆盖。
是PTR 的构造函数中,this.opt = $.extend(PTR.defaults, opt || {}); 导致所有的PTR对象的opt属性指向了同一个。如下修改:
this.opt = $.extend( opt || {},PTR.defaults,);
The text was updated successfully, but these errors were encountered: