Minor (no-op) change

This commit is contained in:
David Greenspan
2014-04-09 11:56:48 -07:00
parent 204a2c7eb5
commit 0fb3c916ef

View File

@@ -32,7 +32,7 @@ AttributeHandler.prototype.update = function (element, oldValue, value) {
if (oldValue !== null)
element.removeAttribute(this.name);
} else {
element.setAttribute(this.name, this.value);
element.setAttribute(this.name, value);
}
};