Changes between Initial Version and Version 1 of Ticket #905
- Timestamp:
- Feb 1, 2007, 9:39:21 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #905 – Description
initial v1 9 9 The code that Brandon included in dimensions.js is near the bottom of the page: 10 10 11 {{{ 11 12 // Opera thinks offset is scroll offset for display: inline elements 12 13 if (options.scroll && jQuery.browser.opera && jQuery.css(elem, 'display') == 'inline') { … … 14 15 st -= elem.scrollTop || 0; 15 16 } 16 17 }}} 17 18 18 19 This duplication of code (same functionality in iutils.js and dimensions.js) should be eliminated, if possible, in order to keep jQuery as simple as possible.