fix getAttribute return value

This commit is contained in:
Martin Zimmermann 2016-02-21 18:55:36 +01:00
parent 098f09e6df
commit a3a1d8cb86

View File

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