mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-13 09:00: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();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}();
|