Add depcache, systemjs polyfill

This commit is contained in:
Jonathan Cremin 2015-06-16 01:39:58 +01:00
parent 4c6ab78b53
commit 20431ddec8
3 changed files with 1083 additions and 2 deletions

View file

@ -14,6 +14,7 @@ let App = React.createClass({
<body className='home'>
<RouteHandler {...this.props} />
<GAInitiailizer />
<script src='/jspm_packages/system-polyfills.src.js'></script>
<script src='/jspm_packages/system.src.js'></script>
<script src='/config.js'></script>
<script dangerouslySetInnerHTML={{__html: 'System.import(\'views/app\');'}}></script>
@ -23,7 +24,6 @@ let App = React.createClass({
}
});
let routes = (
<Route name='home' handler={App} path='/'>
<DefaultRoute handler={Home} />