Skip to content

Commit 6ca4018

Browse files
authored
Merge pull request #504 from er1c/jsdom-link
Update jsdom github links
2 parents ee1d483 + 22db1b1 commit 6ca4018

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

_posts/news/2016-10-17-announcing-scalajs-0.6.13.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Until 0.6.12 (and since 0.6.6), the defaults were:
4040
The new defaults are the following:
4141

4242
* Node.js by default
43-
* Node.js + [`jsdom`](https://github.com/tmpvar/jsdom) with `jsDependencies += RuntimeDOM`
43+
* Node.js + [`jsdom`](https://github.com/jsdom/jsdom) with `jsDependencies += RuntimeDOM`
4444

4545
Note that Node.js and jsdom need to be installed separately on your system.
4646

doc/project/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ You can run a Scala.js application (that has `scalaJSUseMainModuleInitializer` s
5858
This will run the `-fastopt.js` file right inside of your sbt console.
5959
By default, the file is run with [Node.js](http://nodejs.org/), which you need to install separately.
6060

61-
**Scala.js 0.6.x only:** If your application or one of its libraries requires a DOM (which can be specified with `jsDependencies += RuntimeDOM`), you will also need to install [`jsdom`](https://github.com/tmpvar/jsdom) with `npm install jsdom`.
61+
**Scala.js 0.6.x only:** If your application or one of its libraries requires a DOM (which can be specified with `jsDependencies += RuntimeDOM`), you will also need to install [`jsdom`](https://github.com/jsdom/jsdom) with `npm install jsdom`.
6262
`jsDependencies += RuntimeDOM` is now deprecated, and should be replaced by `jsEnv := new org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv()`.
6363

6464
There are alternative JavaScript interpreters that are available.

doc/project/js-environments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For more options of the Node.js environment, see
3030

3131
## Node.js with JSDOM
3232

33-
This environment uses [jsdom](https://github.com/tmpvar/jsdom) to provide a headless browser environment on top of Node.js.
33+
This environment uses [jsdom](https://github.com/jsdom/jsdom) to provide a headless browser environment on top of Node.js.
3434
You can enable it with the following sbt setting:
3535

3636
{% highlight scala %}

doc/tutorial/basic/0.6.x.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ To make the DOM available, add the following to your `build.sbt`:
378378
jsEnv := new org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv()
379379
{% endhighlight %}
380380

381-
This will use the [`jsdom`](https://github.com/tmpvar/jsdom) library to simulate a DOM in Node.js.
381+
This will use the [`jsdom`](https://github.com/jsdom/jsdom) library to simulate a DOM in Node.js.
382382
Note that you need to install it separately using
383383

384384
$ npm install jsdom

doc/tutorial/basic/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ and the following to your `build.sbt`:
334334
jsEnv := new org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv()
335335
{% endhighlight %}
336336

337-
This will use the [`jsdom`](https://github.com/tmpvar/jsdom) library to simulate a DOM in Node.js.
337+
This will use the [`jsdom`](https://github.com/jsdom/jsdom) library to simulate a DOM in Node.js.
338338
Note that you need to install it separately using
339339

340340
$ npm install jsdom

0 commit comments

Comments
 (0)