Skip to content

Commit

Permalink
fix(index): remove invalid path references
Browse files Browse the repository at this point in the history
A few invalid paths which were referenced in index.html were removed.
These paths became invalid due to commit daf71f2
which moved where the bower_components directory is placed.

Closes angular#184
  • Loading branch information
Phillip Spitler authored and petebacondarwin committed May 7, 2014
1 parent daf71f2 commit 9cc6f6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<title>My AngularJS App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../bower_components/html5-boilerplate/css/normalize.css">
<link rel="stylesheet" href="../bower_components/html5-boilerplate/css/main.css">
<link rel="stylesheet" href="bower_components/html5-boilerplate/css/normalize.css">
<link rel="stylesheet" href="bower_components/html5-boilerplate/css/main.css">
<link rel="stylesheet" href="css/app.css"/>
<script src="../bower_components/html5-boilerplate/js/vendor/modernizr-2.6.2.min.js"></script>
<script src="bower_components/html5-boilerplate/js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<ul class="menu">
Expand Down

0 comments on commit 9cc6f6a

Please sign in to comment.