mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
jquery core: saving some bytes and fixing indentation inside jQuery.prop.
This commit is contained in:
parent
456d8a62cc
commit
ec075266e9
20
src/core.js
20
src/core.js
@ -427,7 +427,7 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
|
|
||||||
html: function( value ) {
|
html: function( value ) {
|
||||||
return value == undefined ?
|
return value == undefined ?
|
||||||
(this.length ?
|
(this[0] ?
|
||||||
this[0].innerHTML :
|
this[0].innerHTML :
|
||||||
null) :
|
null) :
|
||||||
this.empty().append( value );
|
this.empty().append( value );
|
||||||
@ -504,9 +504,9 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
this;
|
this;
|
||||||
|
|
||||||
// execute all scripts after the elements have been injected
|
// execute all scripts after the elements have been injected
|
||||||
if ( jQuery.nodeName( elem, "script" ) ) {
|
if ( jQuery.nodeName( elem, "script" ) )
|
||||||
scripts = scripts.add( elem );
|
scripts = scripts.add( elem );
|
||||||
} else {
|
else {
|
||||||
// Remove any inner scripts for later evaluation
|
// Remove any inner scripts for later evaluation
|
||||||
if ( elem.nodeType == 1 )
|
if ( elem.nodeType == 1 )
|
||||||
scripts = scripts.add( jQuery( "script", elem ).remove() );
|
scripts = scripts.add( jQuery( "script", elem ).remove() );
|
||||||
@ -745,14 +745,14 @@ jQuery.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
prop: function( elem, value, type, i, name ) {
|
prop: function( elem, value, type, i, name ) {
|
||||||
// Handle executable functions
|
// Handle executable functions
|
||||||
if ( jQuery.isFunction( value ) )
|
if ( jQuery.isFunction( value ) )
|
||||||
value = value.call( elem, i );
|
value = value.call( elem, i );
|
||||||
|
|
||||||
// Handle passing in a number to a CSS property
|
// Handle passing in a number to a CSS property
|
||||||
return value && value.constructor == Number && type == "curCSS" && !exclude.test( name ) ?
|
return value && value.constructor == Number && type == "curCSS" && !exclude.test( name ) ?
|
||||||
value + "px" :
|
value + "px" :
|
||||||
value;
|
value;
|
||||||
},
|
},
|
||||||
|
|
||||||
className: {
|
className: {
|
||||||
|
Loading…
Reference in New Issue
Block a user