diff options
| author | gdh1995 | 2015-08-28 21:51:22 +0800 | 
|---|---|---|
| committer | gdh1995 | 2015-08-28 21:51:22 +0800 | 
| commit | 854a7972c21e5fedfbca6c06e2671d7466369919 (patch) | |
| tree | 0e913c38971300dd45e72e235a18872f3d942685 /lib | |
| parent | da8653f303015f0780fe3270a2ec8db60316d29e (diff) | |
| download | vimium-854a7972c21e5fedfbca6c06e2671d7466369919.tar.bz2 | |
fix a typo in PR #1798
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/dom_utils.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/dom_utils.coffee b/lib/dom_utils.coffee index cd9e0405..ef34207e 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 = document.createElementNS.bind document, "http://www.w3.org/1999/xhtml" -      @createElement() +      @createElement(tagName)    #    # Adds a list of elements to a page. | 
