Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c784517

Browse files
author
Valentin Hervieu
committed
6.1.2 release
1 parent 6b48c3a commit c784517

File tree

9 files changed

+32
-27
lines changed

9 files changed

+32
-27
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#530
2+
# 6.1.2 (2017-05-15)
3+
## Fixes
4+
- Fix ticks and values at intermediate positions on IE (#531)
5+
16
# 6.1.1 (2017-03-29)
27
## Fixes
38
- Add vendor prefixes for transform property in JS code (#518)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-slider",
3-
"version": "6.1.1",
3+
"version": "6.1.2",
44
"homepage": "https://github.com/angular-slider/angularjs-slider",
55
"authors": [
66
"Rafal Zajac <[email protected]>",

dist/rzslider.css

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*! angularjs-slider - v6.1.1 -
1+
/*! angularjs-slider - v6.1.2 -
22
(c) Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]> -
33
https://github.com/angular-slider/angularjs-slider -
4-
2017-04-23 */
4+
2017-05-15 */
55
/*jslint unparam: true */
66
/*global angular: false, console: false, define, module */
77
(function(root, factory) {

dist/rzslider.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.scss

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-slider",
3-
"version": "6.1.1",
3+
"version": "6.1.2",
44
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
55
"main": "dist/rzslider.js",
66
"repository": {

src/rzslider.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,20 +232,20 @@
232232
}
233233
.rz-tick-value {
234234
left: @ticksValuePositionOnVertical;
235-
top: initial;
235+
top: auto;
236236
transform: translate(0, -28%);
237237
}
238238
.rz-tick-legend {
239-
top: initial;
239+
top: auto;
240240
right: @ticksLegendPosition;
241241
transform: translate(0, -28%);
242242
max-width: none;
243243
white-space: nowrap;
244244
}
245245
.rz-ticks-values-under {
246246
.rz-tick-value {
247-
bottom: initial;
248-
left: initial;
247+
bottom: auto;
248+
left: auto;
249249
right: @ticksValuePositionOnVertical;
250250
}
251251
}

0 commit comments

Comments
 (0)