19 lines
496 B
Plaintext
19 lines
496 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>Loading</title><%- inlineNot %>
|
|
</head>
|
|
<body><%- inline %>
|
|
<script>
|
|
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']);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|