I have no idea

This commit is contained in:
Max Lynch
2015-04-27 15:09:21 -05:00
parent f4905ee5b7
commit a544efc509
10 changed files with 119 additions and 57 deletions

View File

@@ -34,6 +34,7 @@ module.exports = {
'angular2.js',
'angular2-di.js',
'ionic2.js',
'https://cdn.firebase.com/js/client/2.2.4/firebase.js'
],
traceurOptions: {

View File

@@ -7,7 +7,13 @@
<link rel="stylesheet" href="<%= PREFIX %>/css/ionic.css" />
<% buildConfig.scripts.forEach(function(script) {
var src = script.to || script; %><script src="<%= PREFIX %>/lib/<%= src %>"></script>
var src = script.to || script;
if (!/http/.test(src)) {
%>
<script src="<%= PREFIX %>/lib/<%= src %>"></script>
<% } else { %>
<script src="<%= src %>"></script>
<% } %>
<% }); %>
</head>
<body ion-app>