(function($){"use strict";

$.widget('shiftpress.calendar', {
    _create: function() {
        var options = $.extend(this.options, {
            nextText: "&#9654;",
            prevText: "&#9664;",
            disabled: true
        });

        this.element.datepicker(options);
    },

    refresh: function() {
        
    },

    getDate: function() {
        return this.element.datepicker('getDate');
    }
});

})(jQuery);

