Skip to content

Commit

Permalink
Release v9.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rovolution committed Aug 6, 2016
1 parent 5dda9a8 commit ca9501a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 37 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seiyria-bootstrap-slider",
"version": "9.1.2",
"version": "9.1.3",
"homepage": "https://github.com/seiyria/bootstrap-slider",
"authors": [
"Kyle Kemp <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "seiyria/bootstrap-slider",
"type": "library",
"version": "9.1.2",
"version": "9.1.3",
"description": "A less buggy fork of the original bootstrap slider found on http://www.eyecon.ro/ by Stefan Petre. It was forked so we could update the slider since the original wasn't under version control.",
"keywords": ["slider", "css", "bootstrap", "javascript"],
"homepage": "https://github.com/seiyria/bootstrap-slider",
Expand Down
13 changes: 8 additions & 5 deletions dist/bootstrap-slider.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*! =======================================================
VERSION 9.1.2
VERSION 9.1.3
========================================================= */
"use strict";

Expand Down Expand Up @@ -36,6 +36,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
* v1.0.1
* MIT license
*/
var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(window)) === "object";

(function (factory) {
if (typeof define === "function" && define.amd) {
Expand All @@ -57,13 +58,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
var NAMESPACE_ALTERNATE = 'bootstrapSlider';

// Polyfill console methods
if (!window.console) {
if (windowIsDefined && !window.console) {
window.console = {};
}
if (!window.console.log) {
if (windowIsDefined && !window.console.log) {
window.console.log = function () {};
}
if (!window.console.warn) {
if (windowIsDefined && !window.console.warn) {
window.console.warn = function () {};
}

Expand Down Expand Up @@ -1624,7 +1625,9 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
$.bridget(NAMESPACE_MAIN, Slider);
autoRegisterNamespace = NAMESPACE_MAIN;
} else {
window.console.warn("bootstrap-slider.js - WARNING: $.fn.slider namespace is already bound. Use the $.fn.bootstrapSlider namespace instead.");
if (windowIsDefined) {
window.console.warn("bootstrap-slider.js - WARNING: $.fn.slider namespace is already bound. Use the $.fn.bootstrapSlider namespace instead.");
}
autoRegisterNamespace = NAMESPACE_ALTERNATE;
}
$.bridget(NAMESPACE_ALTERNATE, Slider);
Expand Down
29 changes: 2 additions & 27 deletions dist/bootstrap-slider.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-slider.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*! =======================================================
VERSION 9.1.2
VERSION 9.1.3
========================================================= */
/*! =========================================================
* bootstrap-slider.js
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap-slider.min.css

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-slider",
"version": "9.1.2",
"version": "9.1.3",
"description": "Slider view component for Twitter Bootstrap.",
"main": "dist/bootstrap-slider.js",
"style": "dist/css/bootstrap-slider.css",
Expand Down

0 comments on commit ca9501a

Please sign in to comment.