Changes between Initial Version and Version 1 of Ticket #3623, comment 47
- Timestamp:
- Sep 14, 2011, 2:57:31 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3623, comment 47
initial v1 1 1 To fix this bug for v. 1.8.11+, open the Dialog js file (jquery.ui.dialog.js) and scroll down to the height property of the overlay. Look for this line: 2 {{{ 3 if ($.browser.msie && $.browser.version < 7) { 4 }}} 5 and change it to 6 {{{ 7 if ($.browser.msie) { 8 }}} 2 9 3 if ($.browser.msie && $.browser.version < 7) {4 5 and change it to6 7 if ($.browser.msie) {8 10 9 11 Do the same for the width property and you will fix the scroll bar bug for all versions of IE.