2019-12-02 18:15:00 +00:00
|
|
|
(function(global) {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
global.GOVUK.Modules.RadioSlider = function() {
|
|
|
|
|
|
|
|
|
|
this.start = function(component) {
|
|
|
|
|
|
|
|
|
|
$(component)
|
|
|
|
|
.on('click', function() {
|
|
|
|
|
|
2019-12-12 14:16:38 +00:00
|
|
|
valuesInLabel = $(this).find(':checked').next('label').text().split('/');
|
2019-12-02 18:15:00 +00:00
|
|
|
|
2019-12-12 14:16:38 +00:00
|
|
|
if (valuesInLabel.length === 2) {
|
|
|
|
|
leftValue = valuesInLabel[0];
|
|
|
|
|
rightValue = valuesInLabel[1];
|
|
|
|
|
$(this).find('.radio-slider-left-value').html(leftValue);
|
|
|
|
|
$(this).find('.radio-slider-right-value').html(rightValue);
|
2019-12-02 18:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.trigger('click');
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
})(window);
|