mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 07:30:26 +00:00
14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
var ComponentsDropdowns = function () {
|
|
|
|
var handleMultiSelect = function () {
|
|
$('#domain_multi_user').multiSelect();
|
|
}
|
|
|
|
return {
|
|
//main function to initiate the module
|
|
init: function () {
|
|
handleMultiSelect();
|
|
}
|
|
};
|
|
|
|
}(); |