Changeset 5603
- Timestamp:
- 05/15/08 12:53:07 (8 months ago)
- Location:
- trunk/jquery/src
- Files:
-
- 2 modified
-
core.js (modified) (1 diff)
-
dimensions.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/core.js
r5601 r5603 1360 1360 }; 1361 1361 }); 1362 1363 // Helper function used by the dimensions and offset modules 1364 function num(elem, prop) { 1365 return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0; 1366 } -
trunk/jquery/src/dimensions.js
r5596 r5603 22 22 23 23 }); 24 25 function num(elem, prop) {26 return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;27 }
