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
@ -427,7 +427,7 @@ jQuery.fn = jQuery.prototype = {
|
||||
|
||||
html: function( value ) {
|
||||
return value == undefined ?
|
||||
(this.length ?
|
||||
(this[0] ?
|
||||
this[0].innerHTML :
|
||||
null) :
|
||||
this.empty().append( value );
|
||||
@ -504,9 +504,9 @@ jQuery.fn = jQuery.prototype = {
|
||||
this;
|
||||
|
||||
// execute all scripts after the elements have been injected
|
||||
if ( jQuery.nodeName( elem, "script" ) ) {
|
||||
if ( jQuery.nodeName( elem, "script" ) )
|
||||
scripts = scripts.add( elem );
|
||||
} else {
|
||||
else {
|
||||
// Remove any inner scripts for later evaluation
|
||||
if ( elem.nodeType == 1 )
|
||||
scripts = scripts.add( jQuery( "script", elem ).remove() );
|
||||
|
Loading…
Reference in New Issue
Block a user