Skip to content
This repository has been archived by the owner on Mar 16, 2019. It is now read-only.

Commit

Permalink
Remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mdaines committed Dec 8, 2018
1 parent bff6063 commit 8a4a587
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions rollup-no-worker/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="utf8">
</head>
<body>

<script src="./bundle.js"></script>

</body>
</html>
4 changes: 2 additions & 2 deletions rollup/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="utf8">
</head>
<body>

<script src="./bundle.js"></script>

</body>
</html>
6 changes: 3 additions & 3 deletions script-tag/module.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
<meta charset="utf-8">
</head>
<body>

<script type="module">
import Viz from './node_modules/viz.js/viz.es.js';

var viz = new Viz({ workerURL: 'node_modules/viz.js/full.render.js' });

viz.renderSVGElement('digraph { a -> b; }')
.then(function(element) {
document.body.appendChild(element);
});
</script>

</body>
</html>
8 changes: 4 additions & 4 deletions script-tag/no-worker.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
<meta charset="utf-8">
</head>
<body>

<script src="node_modules/viz.js/viz.js"></script>
<script src="node_modules/viz.js/full.render.js"></script>
<script>

var viz = new Viz();

viz.renderSVGElement('digraph { a -> b; }')
.then(function(element) {
document.body.appendChild(element);
});

</script>

</body>
</html>
8 changes: 4 additions & 4 deletions script-tag/worker.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<meta charset="utf-8">
</head>
<body>

<script src="node_modules/viz.js/viz.js"></script>
<script>

var viz = new Viz({ workerURL: 'node_modules/viz.js/full.render.js' });

viz.renderSVGElement('digraph { a -> b; }')
.then(function(element) {
document.body.appendChild(element);
});

</script>

</body>
</html>
4 changes: 2 additions & 2 deletions webpack-no-worker/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="utf8">
</head>
<body>

<script src="./bundle.js"></script>

</body>
</html>
4 changes: 2 additions & 2 deletions webpack/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="utf8">
</head>
<body>

<script src="./bundle.js"></script>

</body>
</html>

0 comments on commit 8a4a587

Please sign in to comment.