X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5a649a9e943f331ec61d2e86c3840397777ccfb6..3263fb5558f69c727e61a6d4c0b3575a0f081ef6:/redakcja/static/js/catalogue/catalogue.js diff --git a/redakcja/static/js/catalogue/catalogue.js b/redakcja/static/js/catalogue/catalogue.js index a56afdb3..a750b77b 100755 --- a/redakcja/static/js/catalogue/catalogue.js +++ b/redakcja/static/js/catalogue/catalogue.js @@ -51,7 +51,15 @@ } }); - $('.chosen-select').chosen(); + $('.chosen-select').chosen().each(function() { + var widget = $(this.nextSibling), $t = $(this); + $.each($.merge([], this.attributes), function() { + if (this.name.substr(0, 5) === 'data-') { + $t.removeAttr(this.name); + widget.attr(this.name, this.value); + } + }); + });