Skip to content

Commit

Permalink
readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Nov 18, 2014
1 parent 799b879 commit f8b4fb0
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions README.md
Expand Up @@ -51,8 +51,7 @@ We can load this demo with:
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('npm:voxel-demo')
.catch(console.error.bind(console));
System.import('npm:voxel-demo');
</script>
```

Expand Down Expand Up @@ -137,8 +136,7 @@ We can load this demo with:
<script src="config.js"></script>
<script>
System.import('lib/app')
.then(console.log.bind(console))
.catch(console.error.bind(console));
.then(console.log.bind(console));
</script>
```

Expand Down Expand Up @@ -306,12 +304,7 @@ We can then load this with a script tag in the page:
<script src="jspm_packages/system.js"></script>
<script src="build.js"></script>
<script>
System.import('app/main')
.catch(function(e) {
setTimeout(function() {
throw e;
});
});
System.import('app/main');
</script>
```

Expand Down

0 comments on commit f8b4fb0

Please sign in to comment.