aboutsummaryrefslogtreecommitdiffstats
path: root/library/jRange/jquery.range.js
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2015-01-21 12:34:01 +0100
committerStefan Parviainen <saparvia@caterva.eu>2015-01-21 12:34:01 +0100
commit84833ca15ec39e85d8c39457f0bb850a0a22525f (patch)
tree5062c6eb7c8a4be7579d7535e9827a30575a4ff0 /library/jRange/jquery.range.js
parent6ea5b577157606ee649b7948197dc7b23e61ce40 (diff)
downloadvolse-hubzilla-84833ca15ec39e85d8c39457f0bb850a0a22525f.tar.gz
volse-hubzilla-84833ca15ec39e85d8c39457f0bb850a0a22525f.tar.bz2
volse-hubzilla-84833ca15ec39e85d8c39457f0bb850a0a22525f.zip
Update to latest version of jRange (fixes issue #867)
Diffstat (limited to 'library/jRange/jquery.range.js')
-rw-r--r--library/jRange/jquery.range.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/library/jRange/jquery.range.js b/library/jRange/jquery.range.js
index 978b3e7ba..b3208387d 100644
--- a/library/jRange/jquery.range.js
+++ b/library/jRange/jquery.range.js
@@ -33,7 +33,9 @@
step : 1,
format: '%s',
theme : 'theme-green',
- width : 300
+ width : 300,
+ minRange: 0,
+ maxRange: 'auto'
},
template : '<div class="slider-container">\
<div class="back-bar">\
@@ -103,7 +105,8 @@
if(e.which !== 1){return;}
e.stopPropagation(); e.preventDefault();
var pointer = $(e.target);
- pointer.addClass('focused');
+ this.pointers.removeClass('last-active');
+ pointer.addClass('focused last-active');
this[(pointer.hasClass('low')?'low':'high') + 'Label'].addClass('focused');
$(document).on('mousemove.slider', $.proxy(this.onDrag, this, pointer));
$(document).on('mouseup.slider', $.proxy(this.onDragEnd, this));
@@ -280,6 +283,7 @@
options = typeof option === 'object' && option;
if (!data) {
$this.data('plugin_' + pluginName, (data = new jRange(this, options)));
+ $(window).resize(function() { data.setValue(data.getValue()); }); // Update slider position when window is resized to keep it in sync with scale
}
// if first argument is a string, call silimarly named function
// this gives flexibility to call functions of the plugin e.g.
@@ -294,4 +298,4 @@
return result || this;
};
-})(jQuery, window, document); \ No newline at end of file
+})(jQuery, window, document);