Ensure datepicker is initially hidden

This commit is contained in:
Keith Wood 2008-06-30 09:47:46 +00:00
parent e73d019dff
commit 9a67543cd2

View File

@ -116,7 +116,7 @@ function Datepicker() {
altFormat: '' // The date format to use for the alternate field
};
$.extend(this._defaults, this.regional['']);
this._datepickerDiv = $('<div id="' + this._mainDivId + '"></div>');
this._datepickerDiv = $('<div id="' + this._mainDivId + '" style="display: none;"></div>');
}
$.extend(Datepicker.prototype, {