Skip to content

Commit

Permalink
Merge pull request #5 from sgmeyer/Development
Browse files Browse the repository at this point in the history
Fixing index.html script reference bug
  • Loading branch information
sgmeyer committed Oct 18, 2013
2 parents 8f57fbe + e8f7d79 commit 72d9812
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/templates/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
<title><%= gameName %></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<script src="src/libs/modernizr/modernizr.js"></script>
<script src="src/bower_components/modernizr/modernizr.js"></script>
<style type="text/css">body {-webkit-tap-highlight-color: rgba(0,0,0,0); margin: 0;}</style>
</head>
<body>
<!--[if lt IE 8]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->

<!-- Add your site or application content here -->

<script src="src/libs/jquery/jquery.js"></script>
<script src="src/bower_components/jquery/jquery.js"></script>
<script src="src/libs/crafty/crafty.js"></script>
<script src="src/libs/underscore/underscore.js"></script>
<script src="src/libs/backbone/backbone.js"></script>
<script src="src/libs/requirejs-jquery/parts/require.js"></script>
<script src="src/bower_components/underscore/underscore.js"></script>
<script src="src/bower_components/backbone/backbone.js"></script>
<script src="src/bower_components/requirejs-jquery/parts/require.js"></script>
<script src="src/game.js"></script>
<script type="text/javascript">
gameContainer = {
Expand Down

0 comments on commit 72d9812

Please sign in to comment.