pullToRefresh.js 318 B

12345678910111213141516
  1. /**
  2. * desc: 下拉刷新 和 上拉加载更多
  3. * author: wangyang
  4. * date: 2015-04-11
  5. */
  6. define(['IScroll'], function(IScroll) {
  7. Iscroll.prototype.addPullToRefresh = function (){
  8. };
  9. Iscroll.prototype.enablePullToRefresh = function (){
  10. };
  11. Iscroll.prototype.disablePullToRefresh = function (){
  12. };
  13. });