prototype: Fix missing var in Element#insert. Closes #10838.
This commit is contained in:
parent
f530309461
commit
7052c5a60c
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Fix missing "var" in Element#insert. Closes #10838. [Lantash]
|
||||
|
||||
* Add Test.Unit.MessageTemplate class. Add flunk, buildMessage and assertBlock methods to Test.Unit.Assertions. Refactor accordingly. [Tobie Langel]
|
||||
|
||||
* Remove useless binding in Template#evaluate. [Tobie Langel]
|
||||
|
|
|
@ -121,7 +121,7 @@ Element.Methods = {
|
|||
|
||||
var content, insert, tagName, childNodes;
|
||||
|
||||
for (position in insertions) {
|
||||
for (var position in insertions) {
|
||||
content = insertions[position];
|
||||
position = position.toLowerCase();
|
||||
insert = Element._insertionTranslations[position];
|
||||
|
|
Loading…
Reference in New Issue