diff --git a/source/Ox.UI/js/Form/Range.js b/source/Ox.UI/js/Form/Range.js index 418a63dc..41a9b618 100644 --- a/source/Ox.UI/js/Form/Range.js +++ b/source/Ox.UI/js/Form/Range.js @@ -6,6 +6,7 @@ Ox.Range Range Object arrows if true, show arrows arrowStep step when clicking arrows arrowSymbols <[s]> arrow symbols, like ['minus', 'plus'] + arrowTooltips <[s]> arrow tooltips max maximum value min minimum value orientation 'horizontal' or 'vertical' @@ -33,6 +34,7 @@ Ox.Range = function(options, self) { arrows: false, arrowStep: 1, arrowSymbols: ['left', 'right'], + arrowTooltips: ['', ''], changeOnDrag: false, max: 100, min: 0, @@ -86,6 +88,7 @@ Ox.Range = function(options, self) { self.$arrows[i] = Ox.Button({ overlap: i == 0 ? 'right' : 'left', title: self.options.arrowSymbols[i], + tooltip: self.options.arrowTooltips[i], type: 'image' }) .addClass('OxArrow')