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

Commit

Permalink
Fix Modernizr path
Browse files Browse the repository at this point in the history
Wiredep uses `/bower_components` paths, Modernizr was included with `bower_componets` (without `/`), so it didn't figure out that it was already included.

Fixes #570.
  • Loading branch information
silvenon committed Jul 6, 2015
1 parent 79b524e commit 3803507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild --><% if (includeModernizr) { %>
<!-- build:js scripts/vendor/modernizr.js -->
<script src="bower_components/modernizr/modernizr.js"></script>
<script src="/bower_components/modernizr/modernizr.js"></script>
<!-- endbuild -->
<% } %>
</head>
Expand Down

0 comments on commit 3803507

Please sign in to comment.