Skip to content

Commit

Permalink
v. 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wilddeer committed Jul 11, 2015
1 parent 63682f2 commit 116fbed
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Peppermint",
"version": "1.3.7",
"version": "1.4.0",
"homepage": "http://wd.dizaina.net/en/scripts/peppermint/",
"authors": [
"Oleg Korsunsky <[email protected]>"
Expand Down
6 changes: 3 additions & 3 deletions dist/peppermint.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* Peppermint touch slider
* v. 1.3.7 | https://github.com/wilddeer/Peppermint
* v. 1.4.0 | https://github.com/wilddeer/Peppermint
* Copyright Oleg Korsunsky | http://wd.dizaina.net/
*
* Depends on Event Burrito (included) | https://github.com/wilddeer/Event-Burrito
Expand Down Expand Up @@ -447,8 +447,8 @@ function Peppermint(_this, options) {

//expose the API
return {
slideTo: function(slide) {
return changeActiveSlide(parseInt(slide, 10));
slideTo: function(slide, speed) {
return changeActiveSlide(parseInt(slide, 10), speed);
},

next: nextSlide,
Expand Down
4 changes: 2 additions & 2 deletions dist/peppermint.min.js

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

6 changes: 3 additions & 3 deletions dist/pure/peppermint.pure.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* Peppermint touch slider
* v. 1.3.7 | https://github.com/wilddeer/Peppermint
* v. 1.4.0 | https://github.com/wilddeer/Peppermint
* Copyright Oleg Korsunsky | http://wd.dizaina.net/
*
* Depends on Event Burrito | https://github.com/wilddeer/Event-Burrito
Expand Down Expand Up @@ -447,8 +447,8 @@ function Peppermint(_this, options) {

//expose the API
return {
slideTo: function(slide) {
return changeActiveSlide(parseInt(slide, 10));
slideTo: function(slide, speed) {
return changeActiveSlide(parseInt(slide, 10), speed);
},

next: nextSlide,
Expand Down
Loading

0 comments on commit 116fbed

Please sign in to comment.