This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_web/www/themes/factuges/assets/scripts/form-samples.js

17 lines
398 B
JavaScript
Raw Normal View History

var FormSamples = function () {
return {
//main function to initiate the module
init: function () {
// to fix chosen dropdown width in inactive hidden tab content
$('.advance_form_with_chosen_element').on('shown', function (e) {
App.initChosenSelect('.chosen_category:visible');
});
}
};
}();