2
0
Fork 0
es5-ff-spa-loader/example/www_views/index.ejs

19 lines
496 B
Plaintext
Raw Normal View History

2015-12-23 00:16:54 +00:00
<!DOCTYPE html>
2016-01-14 21:42:13 +00:00
<html lang="en">
2015-12-23 00:16:54 +00:00
<head>
<meta charset="UTF-8"/>
<title>Loading</title><%- inlineNot %>
</head>
<body><%- inline %>
<script>
2016-01-14 21:42:13 +00:00
FFSpaLoader.options.debug = true;
FFSpaLoader.options.server.urlPath = '/static/spa-client-resources';
FFSpaLoader.options.cache.factory = FFSpaLoader.autoSelectCache();
FFSpaLoader.start(function() {
console.log('FFExample.bootstrap angular');
angular.bootstrap( $('body'), ['exampleUI']);
2015-12-23 00:16:54 +00:00
});
</script>
</body>
</html>