From a3a1d8cb86191116daa4c426effdf316efa107af Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Sun, 21 Feb 2016 18:55:36 +0100 Subject: [PATCH] fix getAttribute return value --- isso/js/app/dom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isso/js/app/dom.js b/isso/js/app/dom.js index c13469f..e04dd00 100644 --- a/isso/js/app/dom.js +++ b/isso/js/app/dom.js @@ -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;