Subversion Repositories Integrator Subversion

Rev

Blame | Last modification | View Log | Download | RSS feed

var Search = function () {

    return {
        //main function to initiate the module
        init: function () {
                $('.date-picker').datepicker({
                rtl: App.isRTL(),
                orientation: "left",
                autoclose: true
            });
        }

    };

}();

jQuery(document).ready(function() {
    Search.init();
})