This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_web/www/themes/factuges/assets/scripts/search.js

15 lines
287 B
JavaScript
Raw Normal View History

var Search = function () {
return {
//main function to initiate the module
init: function () {
if (jQuery().datepicker) {
$('.date-picker').datepicker();
}
App.initFancybox();
}
};
}();