Add missing semicolons. [#751 state:resolved]

This commit is contained in:
Tobie Langel 2009-07-30 02:16:39 +02:00
parent 41b034b93b
commit d88aef3a55
2 changed files with 4 additions and 2 deletions

View File

@ -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)

View File

@ -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;