Pass jslint, 2 missing semicolons
This commit is contained in:
parent
2580420b7e
commit
d28922bc03
1 changed files with 2 additions and 2 deletions
|
@ -331,12 +331,12 @@ jQuery.extend({
|
||||||
name = jQuery.attrFix[ name ] || name;
|
name = jQuery.attrFix[ name ] || name;
|
||||||
|
|
||||||
if ( jQuery.support.getSetAttribute ) {
|
if ( jQuery.support.getSetAttribute ) {
|
||||||
elem.removeAttribute( name )
|
elem.removeAttribute( name );
|
||||||
} else {
|
} else {
|
||||||
// set property to null if getSetAttribute not supported (IE6-7)
|
// set property to null if getSetAttribute not supported (IE6-7)
|
||||||
// setting className to null makes the class "null"
|
// setting className to null makes the class "null"
|
||||||
if ( name === "className" ) {
|
if ( name === "className" ) {
|
||||||
elem.className = ""
|
elem.className = "";
|
||||||
} else {
|
} else {
|
||||||
elem.setAttribute( name, null );
|
elem.setAttribute( name, null );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue