mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Pass jslint, 2 missing semicolons
This commit is contained in:
parent
2580420b7e
commit
d28922bc03
@ -331,12 +331,12 @@ jQuery.extend({
|
||||
name = jQuery.attrFix[ name ] || name;
|
||||
|
||||
if ( jQuery.support.getSetAttribute ) {
|
||||
elem.removeAttribute( name )
|
||||
elem.removeAttribute( name );
|
||||
} else {
|
||||
// set property to null if getSetAttribute not supported (IE6-7)
|
||||
// setting className to null makes the class "null"
|
||||
if ( name === "className" ) {
|
||||
elem.className = ""
|
||||
elem.className = "";
|
||||
} else {
|
||||
elem.setAttribute( name, null );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user