Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ganlanyuan committed Oct 12, 2016
1 parent 9bf206f commit 2205f29
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# tiny-slider
![version](https://img.shields.io/badge/Version-0.6.1-green.svg)
![version](https://img.shields.io/badge/Version-0.6.2-green.svg)
Tiny slider for all purposes, inspired by [Owl Carousel](http://owlcarousel.owlgraphic.com/).
Works on morden browsers and IE8+.
[demo](http://creatiointl.org/william/tiny-slider/v1/demo/)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tiny-slider",
"version": "0.6.1",
"version": "0.6.2",
"homepage": "https://github.com/ganlanyuan/tiny-slider",
"authors": [
"WilliamLin <[email protected]>"
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class `tiny-next` => attribute `[data-controls="next"`.
- Fixed: an issue with `items`, when container width is shorter than one slide in fixedWidth slider.
-->

#### v0.6.2
- Fixed: a conditional statement issue in function `updateLayout`.
- Improved: performance.

#### v0.6.1
- Fixed: a syntax issue in function `setAttrs`.

Expand Down
3 changes: 1 addition & 2 deletions dist/tiny-slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ gn.unwrap = function (els) {
};
/**
* tiny-slider
* @version 0.6.1
* @version 0.6.2
* @author William Lin
* @license The MIT License (MIT)
* @github https://github.com/ganlanyuan/tiny-slider/
Expand Down Expand Up @@ -1446,7 +1446,6 @@ var tinySlider = (function () {
// IE10 scroll function
function ie10Scroll() {
setTransitionDuration(0);
// sliderContainer.style.transform = 'translate3d(-' + - sliderContainer.scrollLeft() + 'px,0,0)';
translate(sliderContainer.scrollLeft());
}

Expand Down
3 changes: 1 addition & 2 deletions dist/tiny-slider.native.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* tiny-slider
* @version 0.6.1
* @version 0.6.2
* @author William Lin
* @license The MIT License (MIT)
* @github https://github.com/ganlanyuan/tiny-slider/
Expand Down Expand Up @@ -876,7 +876,6 @@ var tinySlider = (function () {
// IE10 scroll function
function ie10Scroll() {
setTransitionDuration(0);
// sliderContainer.style.transform = 'translate3d(-' + - sliderContainer.scrollLeft() + 'px,0,0)';
translate(sliderContainer.scrollLeft());
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tiny-slider",
"version": "0.6.1",
"version": "0.6.2",
"description": "Pure tiny javascript slider for all purposes.",
"main": "dist/tiny-slider.js",
"style": "dist/tiny-slider.css",
Expand Down
2 changes: 1 addition & 1 deletion src/tiny-slider.native.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* tiny-slider
* @version 0.6.1
* @version 0.6.2
* @author William Lin
* @license The MIT License (MIT)
* @github https://github.com/ganlanyuan/tiny-slider/
Expand Down

0 comments on commit 2205f29

Please sign in to comment.