Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed Jan 20, 2018
2 parents 784f793 + 982c210 commit afc8a67
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ npm [(package)](https://www.npmjs.com/package/nouislider)
Changelog
---------

### 11.0.1 (*2018-01-20*)
- Fixed: Slider ignores clicks on `.noUi-target` outside of `.noUi-base` (#842);
- Fixed: `.noUi-origin` moving out of the page causes horizontal scrolling (#852);
- Fixed: Relative `.noUi-handle` has unintended margin (#854);

### 11.0.0 (*2018-01-12*)
noUiSlider 11 doesn't include any breaking API changes.
Unless major changes were made to the stylesheet or you specifically depend
Expand Down
2 changes: 1 addition & 1 deletion distribute/nouislider.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 11.0.0 - 2018-01-12 20:37:52 */
/*! nouislider - 11.0.1 - 2018-01-20 18:00:49 */
/* Functional styling;
* These styles are required for noUiSlider to function.
* You don't need to change these rules to apply your design.
Expand Down
4 changes: 2 additions & 2 deletions distribute/nouislider.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 11.0.0 - 2018-01-12 20:37:52 */
/*! nouislider - 11.0.1 - 2018-01-20 18:00:49 */

(function (factory) {

Expand All @@ -22,7 +22,7 @@

'use strict';

var VERSION = '11.0.0';
var VERSION = '11.0.1';


function isValidFormatter ( entry ) {
Expand Down
2 changes: 1 addition & 1 deletion distribute/nouislider.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions distribute/nouislider.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions documentation/_run/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<link href="/nouislider/documentation/assets/prism.css" rel="stylesheet">
<script src="/nouislider/documentation/assets/wNumb.js"></script>

<link href="<?php echo $distribute; ?>/nouislider.css?v=1010" rel="stylesheet">
<script src="<?php echo $distribute; ?>/nouislider.js?v=1010"></script>
<link href="<?php echo $distribute; ?>/nouislider.css?v=<?php echo $plain_version; ?>" rel="stylesheet">
<script src="<?php echo $distribute; ?>/nouislider.js?v=<?php echo $plain_version; ?>"></script>
<?php /* <script src="/nouislider/concat.php"></script> */ ?>

</head>
Expand Down
4 changes: 4 additions & 0 deletions documentation/_run/router.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
$title = "";
$description = "";

$package = json_decode(file_get_contents('./../package.json'));
$version = $package->version;
$plain_version = str_replace('.', '', $version);

ob_start();

include $file;
Expand Down
2 changes: 1 addition & 1 deletion documentation/download.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<p>noUiSlider is open source, and you can use it <strong>for free</strong> in any personal or commercial product. No attribution required. Both the uncompressed and compressed version of noUiSlider are available in a <code>.zip</code> release, which is hosted by Github and available over <code>https</code>.</p>

<a class="button" href="https://github.com/leongersen/noUiSlider/releases/download/11.0.0/noUiSlider.11.0.0.zip" data-category="convert" data-action="download">Download noUiSlider from Github</a>
<a class="button" href="https://github.com/leongersen/noUiSlider/releases/download/<?php echo $version; ?>/noUiSlider.<?php echo $version; ?>.zip" data-category="convert" data-action="download">Download noUiSlider from Github</a>

<div class="share">
<iframe src="https://ghbtns.com/github-btn.html?user=leongersen&repo=noUiSlider&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
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": "nouislider",
"version": "11.0.0",
"version": "11.0.1",
"main": "distribute/nouislider",
"style": "distribute/nouislider.min.css",
"license": "WTFPL",
Expand Down

0 comments on commit afc8a67

Please sign in to comment.