Uses the right method setAttribute.

Works better, and the html elements get their attributes.
This commit is contained in:
VonC 2013-10-25 23:18:10 +02:00
parent 0bc3a836fc
commit d20760f40d
1 changed files with 2 additions and 2 deletions

View File

@ -297,8 +297,8 @@
while( matchesClass = mardownClassRegex.exec( classes ) ) {
console.log("attr='" + matchesClass[1] + "'='" + matchesClass[2] + "'");
element.parentNode.attributes[matchesClass[1]] = matchesClass[2];
console.log("=>'" + element.parentNode.attributes[matchesClass[1]] + "'");
element.parentNode.setAttribute(matchesClass[1], matchesClass[2]);
console.log("=>'" + element.parentNode.attributes[matchesClass[1]].nodeValue + "'");
}
}
}