Bug Tracker

Changeset 5356

Show
Ignore:
Timestamp:
04/29/08 23:26:53 (4 months ago)
Author:
scott.gonzalez
Message:

core: Adding missing radix for paresInt.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/dimensions.js

    r5345 r5356  
    2525function num(elem, prop) { 
    2626    elem = elem.jquery ? elem[0] : elem; 
    27     return elem && parseInt( jQuery.curCSS(elem, prop, true) ) || 0; 
     27    return elem && parseInt( jQuery.curCSS(elem, prop, true), 10 ) || 0; 
    2828}