Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This module provides a [jQuery](http://jquery.com/)-like wrapper, but geared for
traversing and manipulating an XML DOM, as opposeed to an HTML DOM. The API
aims to be compatible with [Strophe.js](https://github.com/strophe/strophejs)'
`Builder` and [Less-Than XML](https://github.com/astro/ltx). The underlying DOM
is W3C standard, provided by [XMLDOM](https://github.com/jindw/xmldom).
is W3C standard, provided by [XMLDOM](https://github.com/xmldom/xmldom).

## Install

Expand Down
2 changes: 1 addition & 1 deletion lib/collection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Module dependencies.
*/
var dom = require('xmldom')
var dom = require('@xmldom/xmldom')
, DOMParser = dom.DOMParser
, XMLSerializer = dom.XMLSerializer;

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"main": "./lib",
"dependencies": {
"xmldom": "0.1.x"
"@xmldom/xmldom": "^0.7.5"
},
"devDependencies": {
"mocha": "1.x.x",
Expand All @@ -45,7 +45,7 @@
"browsers": [
"chrome/latest"
],
"harness" : "mocha",
"harness": "mocha",
"files": [
"test/bootstrap/testling.js",
"test/*.test.js"
Expand Down
2 changes: 1 addition & 1 deletion test/wrap.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var fs = require('fs')
, DOMParser = require('xmldom').DOMParser
, DOMParser = require('@xmldom/xmldom').DOMParser
, $ = require('..');


Expand Down