mirror of
https://gitee.com/coder-xiaomo/flashsale
synced 2025-09-12 15:01:39 +08:00
15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
var Search = function () {
|
|
|
|
return {
|
|
//main function to initiate the module
|
|
init: function () {
|
|
if (jQuery().datepicker) {
|
|
$('.date-picker').datepicker();
|
|
}
|
|
|
|
Metronic.initFancybox();
|
|
}
|
|
|
|
};
|
|
|
|
}(); |