Skip to content
Code-Schnipsel Gruppen Projekte
Commit 92a067a1 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'dev'

Übergeordnete c7d7ee24 f8c5d537
Keine zugehörigen Branchen gefunden
Tags 1.9.4
2 Merge Requests!63Update 'next-2.x' with latest changes from 'main',!12Merge for Version 1.4.4
......@@ -41,8 +41,8 @@ define('qui/controls/input/Range', [
snap : false, // When a non-linear slider has been configured,
// the snap option can be set to true
// to force the slider to jump between the specified values.
connect : true, // Display a colored bar between the handles
pips : {} // Displays pipes and ranges for the slider
connect: true, // Display a colored bar between the handles
pips : {} // Displays pipes and ranges for the slider
},
initialize: function (options) {
......@@ -120,7 +120,7 @@ define('qui/controls/input/Range', [
var timerChangeEvent = null;
var fireChangeEvent = function () {
this.fireEvent('change');
this.fireEvent('change', [this]);
}.bind(this);
this.$BarContainer.noUiSlider.on('update', function (values, handle) {
......@@ -169,7 +169,7 @@ define('qui/controls/input/Range', [
setValue: function (value) {
if (this.$BarContainer.noUiSlider) {
this.$BarContainer.noUiSlider.set(value);
this.fireEvent('change');
this.fireEvent('change', [this]);
}
},
......@@ -181,7 +181,7 @@ define('qui/controls/input/Range', [
setFrom: function (value) {
if (this.$BarContainer.noUiSlider) {
this.$BarContainer.noUiSlider.set([null, value]);
this.fireEvent('change');
this.fireEvent('change', [this]);
}
},
......@@ -193,7 +193,7 @@ define('qui/controls/input/Range', [
setTo: function (value) {
if (this.$BarContainer.noUiSlider) {
this.$BarContainer.noUiSlider.set([value, null]);
this.fireEvent('change');
this.fireEvent('change', [this]);
}
},
......
0% Lade oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren