Skip to content

Commit

Permalink
bump 2.4.3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebachelier committed Jan 29, 2014
1 parent ae314b0 commit b99e988
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
<h2>About</h2>
<p><strong>Swiper</strong> - is the <strong>free and ultra lightweight</strong> mobile touch slider with hardware accelerated transitions (where supported) and amazing native behavior. It is intended to use in mobile websites, mobile web apps, and mobile native apps. Designed mostly for iOS, but also works on Android and latest Desktop browsers. <strong>Swiper</strong> is created by <a href="http://www.idangero.us">iDangero.us</a></p>
<h2>Change Log</h2>
<h3>Swiper 2.4.3 - Updated on January 29, 2014</h3>
<ul>
<li>Fix loop and autoplay bug</li>
</ul>
<h3>Swiper 2.4.2 - Updated on January 19, 2014</h3>
<ul>
<li>New <a href="http://www.idangero.us/sliders/swiper/api.php">api</a> parameters: autoplayStopOnLast, longSwipesRatio, eventTarger, preventLinksPropagation</li>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://github.com/nolimits4web/Swiper.git"
},
"description": "Mobile touch slider and framework with hardware accelerated transitions",
"version": "2.4.2",
"version": "2.4.3",
"author": "Vladimir Kharlampidi",
"homepage": "http://www.idangero.us/sliders/swiper/",
"keywords": ["swiper", "swipe", "slider"],
Expand Down
2 changes: 1 addition & 1 deletion dist/idangerous.swiper.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* swiper 2.4.2
* swiper 2.4.3
* Mobile touch slider and framework with hardware accelerated transitions
*
* http://www.idangero.us/sliders/swiper/
Expand Down
7 changes: 5 additions & 2 deletions dist/idangerous.swiper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* swiper 2.4.2
* swiper 2.4.3
* Mobile touch slider and framework with hardware accelerated transitions
*
* http://www.idangero.us/sliders/swiper/
Expand Down Expand Up @@ -2127,7 +2127,10 @@ var Swiper = function (selector, params) {
if (!params.autoplay) return;
_this.callPlugins('onAutoplayStart');
autoplayIntervalId = setInterval(function(){
if (params.loop) _this.swipeNext(true);
if (params.loop) {
_this.fixLoop();
_this.swipeNext(true);
}
else if (!_this.swipeNext(true)) {
if (!params.autoplayStopOnLast) _this.swipeTo(0);
else {
Expand Down
4 changes: 2 additions & 2 deletions dist/idangerous.swiper.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Swiper",
"version": "2.4.2",
"version": "2.4.3",
"description": "Mobile touch slider and framework with hardware accelerated transitions",
"main": "dist/idangerous.swiper.js",
"repository": {
Expand Down

0 comments on commit b99e988

Please sign in to comment.