- Registro, activación y entrada de usuarios git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
17 lines
398 B
JavaScript
17 lines
398 B
JavaScript
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');
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}(); |