Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed May 28, 2017
2 parents d42a2ff + 8a44dda commit 5a48d38
Show file tree
Hide file tree
Showing 30 changed files with 450 additions and 173 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module.exports = function(grunt) {
'src/js/scope_start.js',
'src/js/structure.js',
'src/js/tooltips.js',
'src/js/aria.js',
'src/js/pips.js',
'src/js/scope_helpers.js',
'src/js/scope_events.js',
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ npm [(package)](https://www.npmjs.com/package/nouislider)
Changelog
---------

### 10.0.0 (*2017-05-28*)
- Change: Change event listeners to be passive (#785);
- Fixed: Pips are now updated when calling `updateOptions` (#669);
- Fixed: Content Security Policy issue with pips;
- Added: `removePips` method;
- Added: aria support (#685);
- Added: `ariaFormat` option (controls `aria-valuetext`);
- Fixed: throw a better error when mistakenly trying to initialize noUiSlider with `null` (#658);
- Fixed: Made order of events consistent and documented it (#775);
- Fixed: Border radius of connect bar, white space wrapping of tooltips (#773, #774);
- Fixed: Slider now uses `ownerDocument` instead of `document` (#767);

### 9.2.0 (*2017-01-17*)
- Added: Version number to exceptions;
- Added: `noUiSlider.version` holds current version number;
Expand Down
1 change: 1 addition & 0 deletions concat.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
require 'src/js/scope_start.js';
require 'src/js/structure.js';
require 'src/js/tooltips.js';
require 'src/js/aria.js';
require 'src/js/pips.js';
require 'src/js/scope_helpers.js';
require 'src/js/scope_events.js';
Expand Down
5 changes: 4 additions & 1 deletion distribute/nouislider.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
/*! nouislider - 10.0.0 - 2017-05-28 14:52:48 */
/* Functional styling;
* These styles are required for noUiSlider to function.
* You don't need to change these rules to apply your design.
Expand Down Expand Up @@ -89,6 +89,7 @@
}
.noUi-connect {
background: #3FB8AF;
border-radius: 4px;
box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
-webkit-transition: background 450ms;
transition: background 450ms;
Expand Down Expand Up @@ -164,6 +165,7 @@
*/
.noUi-value {
position: absolute;
white-space: nowrap;
text-align: center;
}
.noUi-value-sub {
Expand Down Expand Up @@ -242,6 +244,7 @@
color: #000;
padding: 5px;
text-align: center;
white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
-webkit-transform: translate(-50%, 0);
Expand Down
Loading

0 comments on commit 5a48d38

Please sign in to comment.