Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #26 from stebulus/master
Browse files Browse the repository at this point in the history
In createElementNS, call createElementNS.
  • Loading branch information
garyb committed Oct 17, 2015
2 parents 84a3f97 + 216e3c2 commit 72ff57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DOM/Node/Document.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ exports.createElementNS = function (ns) {
return function (qualifiedName) {
return function (doc) {
return function () {
return doc.createElement(ns, qualifiedName);
return doc.createElementNS(ns, qualifiedName);
};
};
};
Expand Down

0 comments on commit 72ff57e

Please sign in to comment.