Skip to content

Commit

Permalink
3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ximan committed Jun 15, 2016
1 parent b3e4896 commit dd2cf89
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.4.3(160615)

* 修复点小图出大图DEMO,点击第4张图,滑动到第2张图无法懒加载bug

### 3.4.2(150930)

* 修复索引值为0时无法回调bug
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ $('.element').swipeSlide({

## 最新版本

### 3.4.2(150930)
### 3.4.3(160615)

* 修复索引值为0时无法回调bug
* 修复点小图出大图DEMO,点击第4张图,滑动到第2张图无法懒加载bug

[所有更新日志](Changelog.md)

Expand Down
3 changes: 2 additions & 1 deletion js/swipeSlide.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* swipeSlide
* http://ons.me/500.html
* 西门
* 3.4.2(150930)
* 3.4.3(160615)
*/
;(function(win,$){
'use strict';
Expand Down Expand Up @@ -339,6 +339,7 @@
// 最后一屏,继续往后滑动
}else if(me._index == me._liLength){
fnLazyLoad(me, 0);
fnLazyLoad(me, 2);
}
}else{
fnLazyLoad(me, me._index+1);
Expand Down
4 changes: 2 additions & 2 deletions js/swipeSlide.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dd2cf89

Please sign in to comment.