Skip to content

Commit 7b10db0

Browse files
committed
Updates
1 parent 3983df6 commit 7b10db0

File tree

6 files changed

+8
-11
lines changed

6 files changed

+8
-11
lines changed

docs/all.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/all.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<html>
2-
<head>
3-
<link href="all.css" rel="stylesheet" />
4-
</head>
2+
<head> <link href="all.css" rel="stylesheet"></head>
53
<body>
64
<div id="main">
75
<p>
@@ -19,6 +17,5 @@
1917
demo on David Nolen's blog.
2018
</p>
2119
</div>
22-
<script type="text/javascript" src="all.js"></script>
23-
</body>
20+
<script type="text/javascript" src="all.js"></script></body>
2421
</html>

src/docs/html/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<div id="main">
55
<p>
66
This is an demo for the
7-
<a href="https://github.com/bryanjos/processes"
7+
<a href="https://github.com/elixirscript/processes"
88
>erlang processes javascript library</a
99
>
1010
which will hopefully be part of elixirscript. Below is a table with
1111
10,000 cells. For each cell there is a process responsible for updating
1212
its contents. Each process updates its cell's color and updates it to a
1313
random number. This demo is inspired by the
14-
<a href="http://swannodette.github.io/2013/08/02/100000-processes/"
14+
<a href="https://swannodette.github.io/2013/08/02/100000-processes"
1515
>10,000 Processes</a
1616
>
1717
demo on David Nolen's blog.

webpack.dev.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
output: {
1010
path: __dirname + '/docs',
1111
filename: '[name].js',
12-
publicPath: '/',
12+
publicPath: '',
1313
},
1414
module: {
1515
rules: [

webpack.prod.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
output: {
1010
path: __dirname + '/docs',
1111
filename: '[name].js',
12-
publicPath: '/',
12+
publicPath: '',
1313
},
1414
module: {
1515
rules: [

0 commit comments

Comments
 (0)