Skip to content

Commit cb44dc6

Browse files
Maciej Mrozińskiscottgonzalez
Maciej Mroziński
authored andcommitted
Datepicker: Deleted z-index style on hidden input. Fixed #7449 - Datepicker dialog has a negative z-index.
1 parent b4ef2f7 commit cb44dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.datepicker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ $.extend(Datepicker.prototype, {
309309
this.uuid += 1;
310310
var id = 'dp' + this.uuid;
311311
this._dialogInput = $('<input type="text" id="' + id +
312-
'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');
312+
'" style="position: absolute; top: -100px; width: 0px;"/>');
313313
this._dialogInput.keydown(this._doKeyDown);
314314
$('body').append(this._dialogInput);
315315
inst = this._dialogInst = this._newInst(this._dialogInput, false);

0 commit comments

Comments
 (0)