Newer
Older
alarm / WebRoot / s / media / js / search.js
zhout on 2 Mar 2022 273 bytes first commit
var Search = function () {

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

            App.initFancybox();
        }

    };

}();