mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Made sure that css('width') and height returned string values, not numerical values. Fixes #5627.
This commit is contained in:
@@ -18,8 +18,8 @@ var rexclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
|
||||
|
||||
jQuery.fn.css = function( name, value ) {
|
||||
return access( this, name, value, true, function( elem, name, value ) {
|
||||
if (value === undefined) {
|
||||
return jQuery.css( elem, name );
|
||||
if ( value === undefined ) {
|
||||
return jQuery.curCSS( elem, name );
|
||||
}
|
||||
|
||||
if ( typeof value === "number" && !rexclude.test(name) ) {
|
||||
|
||||
Reference in New Issue
Block a user