fix: move `build directory to resources/shop`

This commit is contained in:
Valentin Lab
2025-10-04 10:00:24 +02:00
parent 0d0e7c4652
commit c94d815e5a
93 changed files with 26 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
function initSelect2()
{
$(".select2").select2({
placeholder: "Select a value",
allowClear: true
});
}
function initChosen()
{
$(".chosen-select").chosen({ no_results_text: translate.getText.no_result });
$(".chosen-search").append('<i class="glyph-icon icon-search"></i>');
$(".chosen-single div").html('<i class="glyph-icon icon-caret-down"></i>');
$(".chosen-container-single").addClass('styled');
}
function resetChosen()
{
$('.chosen-select').each(function() {
$(this).val("").trigger("chosen:updated");
});
}