Add missing semicolons. [#751 state:resolved]
This commit is contained in:
parent
41b034b93b
commit
d88aef3a55
|
@ -1,3 +1,5 @@
|
|||
* Add missing semicolons. [#751 state:resolved] (Diego Perini)
|
||||
|
||||
* Remove expensive (for such low-level method) internal `getClass` in favor of plain string comparison (kangax)
|
||||
|
||||
* Fix `PeriodicalExecuter` so that it no longer suppresses exceptions. [#696 state:resolved] (Samuel Lebeau, Yaffle)
|
||||
|
|
|
@ -1374,7 +1374,7 @@ else if (Prototype.Browser.IE) {
|
|||
attribute = attribute.split('{')[1];
|
||||
attribute = attribute.split('}')[0];
|
||||
return attribute.strip();
|
||||
}
|
||||
};
|
||||
}
|
||||
// IE8
|
||||
else if (value === '') {
|
||||
|
@ -1383,7 +1383,7 @@ else if (Prototype.Browser.IE) {
|
|||
attribute = element.getAttribute(attribute);
|
||||
if (!attribute) return null;
|
||||
return attribute.strip();
|
||||
}
|
||||
};
|
||||
}
|
||||
el = null;
|
||||
return f;
|
||||
|
|
Loading…
Reference in New Issue