mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 15:40:28 +00:00
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
|
var Search = function () {
|
||
|
|
||
|
return {
|
||
|
//main function to initiate the module
|
||
|
init: function () {
|
||
|
if (jQuery().datepicker) {
|
||
|
$('.date-picker').datepicker();
|
||
|
}
|
||
|
|
||
|
Metronic.initFancybox();
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
}();
|