Merge pull request #118 from wheresrhys/patch-1

Moved scripts inside the body tag
This commit is contained in:
Jmeas Smith 2014-03-26 22:07:15 -04:00
commit 420a84464e
2 changed files with 5 additions and 4 deletions

View File

@ -6,12 +6,13 @@
<% css.forEach(function(style){ %>
<link rel="stylesheet" type="text/css" href="<%= style %>">
<% }) %>
</head>
<body>
<% with (scripts) { %>
<% [].concat(polyfills, jasmine, boot, vendor, helpers, src, specs,reporters).forEach(function(script){ %>
<script src="<%= script %>"></script>
<% }) %>
<% }; %>
</head>
<body>
</body>
</html>

View File

@ -6,6 +6,8 @@
<link rel="stylesheet" type="text/css" href="css/a.css">
</head>
<body>
<script src="p1.js"></script>
<script src="J1.js"></script>
<script src="J2.js"></script>
@ -19,7 +21,5 @@
<script src="SPEC1.js"></script>
<script src="SPEC2.js"></script>
<script src="R1.js"></script>
</head>
<body>
</body>
</html>