diff options
author | Keith Wood <kbwood.au@gmail.com> | 2008-06-30 09:47:46 +0000 |
---|---|---|
committer | Keith Wood <kbwood.au@gmail.com> | 2008-06-30 09:47:46 +0000 |
commit | 9a67543cd234d40fd2f29013a677e56c57ee6c3a (patch) | |
tree | 0b1cdc0e77d80589076dc26836c21c51ddbdc307 /ui | |
parent | e73d019dffe19e6b8a7b0659d8da4293ae3ea3ae (diff) | |
download | jquery-ui-9a67543cd234d40fd2f29013a677e56c57ee6c3a.tar.gz jquery-ui-9a67543cd234d40fd2f29013a677e56c57ee6c3a.zip |
Ensure datepicker is initially hidden
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.datepicker.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.datepicker.js b/ui/ui.datepicker.js index ced98633b..97a1c8046 100644 --- a/ui/ui.datepicker.js +++ b/ui/ui.datepicker.js @@ -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, { |