092a8bc7ce
- Removed all backup/duplicate files - Removed test files from root - Consolidated documentation to /docs/ - Moved scripts to /scripts/ - Renamed f_* directories (removed prefix) - Organized icons and assets - Removed unused vendor directories - Cleaned up redundant config files
12 lines
392 B
JavaScript
12 lines
392 B
JavaScript
$(document).ready(function(){
|
|
$(document).on("dblclick", ".noUi-handle.noUi-handle-lower", function (){
|
|
var slider = $(this).parent().parent().parent().parent().find(".noUi-target.noUi-ltr.noUi-horizontal.noUi-background");
|
|
|
|
$(this).parent().parent().parent().parent().find("input").val(function() {
|
|
var _val = this.defaultValue;
|
|
slider.val(_val);
|
|
|
|
return _val;
|
|
});
|
|
});
|
|
}); |