Koha/koha-tmpl/intranet-tmpl/prog/en/includes/select2.inc
Jonathan Druart 46e6df4d22 Bug 25727: Do not open options on clear
We want to restore the previous behaviour and keep the options closed when
clear is clicked

https://github.com/select2/select2/issues/3320#issuecomment-621662039

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2020-08-24 11:19:03 +02:00

47 lines
1.6 KiB
PHP

[% USE raw %]
[% USE Asset %]
[% Asset.js("lib/select2/js/select2.min.js") | $raw %]
[% Asset.css("lib/select2/css/select2.min.css") | $raw %]
[% Asset.css("css/select2.css") | $raw %]
<!-- select2.inc -->
<script>
$.fn.select2.defaults.set("allowClear", true);
$.fn.select2.defaults.set("placeholder", "");
// Internationalization
$.fn.select2.defaults.set("language", {
errorLoading:function(){return"The results could not be loaded."},
inputTooLong:function(e){
var n = e.input.length - e.max;
return _("Please delete %d character(s)").format(n);
},
inputTooShort:function(e){
var n = e.min - e.input.length;
return _("Please enter %n or more characters").format(n);
},
formatResult: function(item) {
return $('<div>', {title: item.element[0].title}).text(item.text);
},
loadingMore:function(){return"Loading more results…"},
maximumSelected:function(e){
return _("You can only select %s item(s)").format(e.max);
},
noResults:function(){return _("No results found")},
searching:function(){return _("Searching…")},
removeAllItems:function(){return _("Remove all items")},
removeItem:function(){return _("Remove item")}
});
$(document).ready(function(){
$(".select2").select2();
$(".select2").on("select2:clear", function (evt) {
$(this).on("select2:opening.cancelOpen", function (evt) {
evt.preventDefault();
$(this).off("select2:opening.cancelOpen");
});
});
});
</script>
<!-- / select2.inc -->