aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdh19952015-08-28 22:37:00 +0800
committergdh19952015-08-28 22:37:00 +0800
commitb771f2201c244d7b80bed337e37210faccf954d1 (patch)
tree11c2bb55d7e1b4e47d965788db1768412bab01eb
parent83aee937126727228a58a85a0ba1a8c5cab03010 (diff)
downloadvimium-b771f2201c244d7b80bed337e37210faccf954d1.tar.bz2
fix a new typo
oh my god
-rw-r--r--lib/dom_utils.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dom_utils.coffee b/lib/dom_utils.coffee
index 47ee6518..0ea3e93d 100644
--- a/lib/dom_utils.coffee
+++ b/lib/dom_utils.coffee
@@ -18,7 +18,7 @@ DomUtils =
# The document namespace doesn't give (X)HTML elements, so we create them with the correct namespace
# manually.
@createElement = (tagName) ->
- document.createElementNS document, "http://www.w3.org/1999/xhtml", tagName
+ document.createElementNS "http://www.w3.org/1999/xhtml", tagName
@createElement(tagName)
#