Skip to content

Commit

Permalink
Datepicker: Deleted z-index style on hidden input. Fixed #7449 - Date…
Browse files Browse the repository at this point in the history
…picker dialog has a negative z-index.

(cherry picked from commit cb44dc6)
  • Loading branch information
Maciej Mroziński authored and scottgonzalez committed Jul 17, 2012
1 parent 347aa33 commit fa5e7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/jquery.ui.datepicker.js
Expand Up @@ -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);
Expand Down

0 comments on commit fa5e7c1

Please sign in to comment.