diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-10 11:45:48 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-10 11:45:48 -0400 |
commit | a3f1a34d3b997550a5a8cf4c630e6580cd37cde5 (patch) | |
tree | cd8ff7023ca59a52fa65d3b50e67da76147ee105 /ui/jquery.ui.datepicker.js | |
parent | fa62f21e5ad09e5368efc3079859730e23a7123b (diff) | |
download | jquery-ui-a3f1a34d3b997550a5a8cf4c630e6580cd37cde5.tar.gz jquery-ui-a3f1a34d3b997550a5a8cf4c630e6580cd37cde5.zip |
Remove use of $.browser; add $.ui.ie and $.ui.ie6 temporarily.
Diffstat (limited to 'ui/jquery.ui.datepicker.js')
-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 9ea36924b..4643af2eb 100644 --- a/ui/jquery.ui.datepicker.js +++ b/ui/jquery.ui.datepicker.js @@ -1605,7 +1605,7 @@ $.extend(Datepicker.prototype, { } html += group; } - html += buttonPanel + ($.browser.msie && parseInt($.browser.version,10) < 7 && !inst.inline ? + html += buttonPanel + ($.ui.ie6 && !inst.inline ? '<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>' : ''); inst._keyEvent = false; return html; |