Skip to content

Commit 72d9812

Browse files
committed
Merge pull request #5 from sgmeyer/Development
Fixing index.html script reference bug
2 parents 8f57fbe + e8f7d79 commit 72d9812

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app/templates/_index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
<title><%= gameName %></title>
1212
<meta name="description" content="">
1313
<meta name="viewport" content="width=device-width">
14-
<script src="src/libs/modernizr/modernizr.js"></script>
14+
<script src="src/bower_components/modernizr/modernizr.js"></script>
1515
<style type="text/css">body {-webkit-tap-highlight-color: rgba(0,0,0,0); margin: 0;}</style>
1616
</head>
1717
<body>
1818
<!--[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]-->
1919

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

22-
<script src="src/libs/jquery/jquery.js"></script>
22+
<script src="src/bower_components/jquery/jquery.js"></script>
2323
<script src="src/libs/crafty/crafty.js"></script>
24-
<script src="src/libs/underscore/underscore.js"></script>
25-
<script src="src/libs/backbone/backbone.js"></script>
26-
<script src="src/libs/requirejs-jquery/parts/require.js"></script>
24+
<script src="src/bower_components/underscore/underscore.js"></script>
25+
<script src="src/bower_components/backbone/backbone.js"></script>
26+
<script src="src/bower_components/requirejs-jquery/parts/require.js"></script>
2727
<script src="src/game.js"></script>
2828
<script type="text/javascript">
2929
gameContainer = {

0 commit comments

Comments
 (0)