Skip to content

Commit 3ba812d

Browse files
author
Valentin Hervieu
committed
6.0.2 release
1 parent e97cf74 commit 3ba812d

8 files changed

+20
-14
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 6.0.2 (2017-03-02)
2+
## Fixes
3+
- Update the combined labels on separation (#502)
4+
15
# 6.0.1 (2017-02-14)
26
## Fixes
37
- Ensure model value is current when custom translate function runs for tick values

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-slider",
3-
"version": "6.0.1",
3+
"version": "6.0.2",
44
"homepage": "https://github.com/angular-slider/angularjs-slider",
55
"authors": [
66
"Rafal Zajac <rzajac@gmail.com>",

dist/rzslider.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*! angularjs-slider - v6.0.1 -
1+
/*! angularjs-slider - v6.0.2 -
22
(c) Rafal Zajac <rzajac@gmail.com>, Valentin Hervieu <valentin@hervieu.me>, Jussi Saarivirta <jusasi@gmail.com>, Angelin Sirbu <angelin.sirbu@gmail.com> -
33
https://github.com/angular-slider/angularjs-slider -
4-
2017-02-15 */
4+
2017-03-02 */
55
/*jslint unparam: true */
66
/*global angular: false, console: false, define, module */
77
(function(root, factory) {
@@ -1354,6 +1354,8 @@
13541354
this.showEl(this.cmbLab);
13551355
} else {
13561356
this.cmbLabelShown = false;
1357+
this.updateHighHandle(this.valueToPosition(this.highValue));
1358+
this.updateLowHandle(this.valueToPosition(this.lowValue));
13571359
this.showEl(this.maxLab);
13581360
this.showEl(this.minLab);
13591361
this.hideEl(this.cmbLab);

dist/rzslider.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.scss

+3-3
Large diffs are not rendered by default.

package.json

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

0 commit comments

Comments
 (0)