diff options
author | Maciej Mroziński <mrozik87@gmail.com> | 2012-07-17 16:16:27 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-07-17 16:17:07 -0400 |
commit | fa5e7c17a804e667513662ea9fbb7e8e6986e42c (patch) | |
tree | 194093af8ac5b603dc8b51e88982564c43de909d /ui | |
parent | 347aa335f001c6e80e6670c90c6262a358b89932 (diff) | |
download | jquery-ui-fa5e7c17a804e667513662ea9fbb7e8e6986e42c.tar.gz jquery-ui-fa5e7c17a804e667513662ea9fbb7e8e6986e42c.zip |
Datepicker: Deleted z-index style on hidden input. Fixed #7449 - Datepicker dialog has a negative z-index.
(cherry picked from commit cb44dc6c2840a77fbb13a398910ca8818d6439e3)
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.datepicker.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.datepicker.js b/ui/jquery.ui.datepicker.js index e043e5d29..51d1b183b 100644 --- a/ui/jquery.ui.datepicker.js +++ b/ui/jquery.ui.datepicker.js @@ -308,7 +308,7 @@ $.extend(Datepicker.prototype, { this.uuid += 1; var id = 'dp' + this.uuid; this._dialogInput = $('<input type="text" id="' + id + - '" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>'); + '" style="position: absolute; top: -100px; width: 0px;"/>'); this._dialogInput.keydown(this._doKeyDown); $('body').append(this._dialogInput); inst = this._dialogInst = this._newInst(this._dialogInput, false); |