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.dialog.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.dialog.js')
-rw-r--r-- | ui/jquery.ui.dialog.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index 98bd7fcaa..8593fff85 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -768,7 +768,7 @@ $.extend( $.ui.dialog.overlay, { var scrollHeight, offsetHeight; // handle IE - if ( $.browser.msie ) { + if ( $.ui.ie ) { scrollHeight = Math.max( document.documentElement.scrollHeight, document.body.scrollHeight @@ -793,7 +793,7 @@ $.extend( $.ui.dialog.overlay, { var scrollWidth, offsetWidth; // handle IE - if ( $.browser.msie ) { + if ( $.ui.ie ) { scrollWidth = Math.max( document.documentElement.scrollWidth, document.body.scrollWidth |