Skip to content

Commit 7f4ab45

Browse files
author
Valentin Hervieu
committed
2.7.0 release
1 parent 34eaf5e commit 7f4ab45

File tree

8 files changed

+11
-8
lines changed

8 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# 2.7.0 (not released)
22
## Features
3+
- Add an enforceStep` option (defaults to true) (#246).
34
- Add a `showSelectionBarFromValue` options (#250).
5+
- Use jqLite html() method to display label values so the translate function can return formated content (#251).
46
- Pass a label string as third arg to the `translate` function to differentiate the labels (#252).
57

8+
## Fix
9+
- Improve combined label position and show only one value if min==max (#245).
10+
611
# 2.6.0 (2016-01-31)
712
## Features
813
- Add a `noSwitching` option to prevent the user from switching the min and max handles (#233).

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": "2.6.0",
3+
"version": "2.7.0",
44
"homepage": "https://github.com/angular-slider/angularjs-slider",
55
"authors": [
66
"Rafal Zajac <[email protected]>",

demo/demo.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ app.controller('MainCtrl', function($scope, $rootScope, $timeout, $modal) {
127127
options: {
128128
ceil: 500,
129129
floor: 0,
130-
step: 50,
131-
showTicksValues: true,
132130
id: 'translate-slider',
133131
translate: function(value, id, which) {
134132
console.info(value, id, which);

dist/rzslider.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angularjs-slider - v2.6.0 -
1+
/*! angularjs-slider - v2.7.0 -
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 -
44
2016-02-06 */

dist/rzslider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angularjs-slider - v2.6.0 -
1+
/*! angularjs-slider - v2.7.0 -
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 -
44
2016-02-06 */

dist/rzslider.min.css

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.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.

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": "2.6.0",
3+
"version": "2.7.0",
44
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
55
"main": "dist/rzslider.js",
66
"repository": {

0 commit comments

Comments
 (0)