fix getAttribute return value

pull/236/head
Martin Zimmermann 8 years ago
parent 098f09e6df
commit a3a1d8cb86

@ -91,7 +91,7 @@ define(function() {
this.scrollIntoView = function(args) { node.scrollIntoView(args) };
this.setAttribute = function(key, value) { node.setAttribute(key, value) };
this.getAttribute = function(key) { node.getAttribute(key) };
this.getAttribute = function(key) { return node.getAttribute(key) };
this.classList = node.classList;

Loading…
Cancel
Save