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"/>
|
2016-01-24 20:38:21 +00:00
|
|
|
<title>Loading</title>
|
2016-02-16 15:09:23 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/spa-loader.css" />
|
2015-12-23 00:16:54 +00:00
|
|
|
</head>
|
2016-01-24 20:38:21 +00:00
|
|
|
<body>
|
|
|
|
<script><%- inlineScript %></script>
|
2015-12-23 00:16:54 +00:00
|
|
|
<script>
|
2016-01-16 17:24:37 +00:00
|
|
|
FFSpaLoader.options.debug.enable = true;
|
|
|
|
FFSpaLoader.options.boot.angular.modules.push('exampleUI');
|
|
|
|
FFSpaLoader.options.server.assets = '/static/spa-client-resources';
|
2016-02-26 23:24:43 +00:00
|
|
|
FFSpaLoader.options.server.header.response['X-My-Api'] = 'noknok';
|
2016-01-16 17:24:37 +00:00
|
|
|
FFSpaLoader.start();
|
2015-12-23 00:16:54 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|