]> source.dussan.org Git - jquery-ui.git/commitdiff
Datepicker: Deleted z-index style on hidden input. Fixed #7449 - Datepicker dialog...
authorMaciej Mroziński <mrozik87@gmail.com>
Tue, 17 Jul 2012 20:16:27 +0000 (16:16 -0400)
committerScott González <scott.gonzalez@gmail.com>
Tue, 17 Jul 2012 20:16:27 +0000 (16:16 -0400)
ui/jquery.ui.datepicker.js

index 4c260a1c8551d26af09bbf6662da9fdb3f6d9992..1b80e3bdb111ee97c3afdd19ec1030d5b65bd101 100644 (file)
@@ -309,7 +309,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);