19 lines
506 B
Plaintext
19 lines
506 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8"/>
|
||
|
<title>Loading</title><%- inlineNot %>
|
||
|
</head>
|
||
|
<body><%- inline %>
|
||
|
<script>
|
||
|
FFSpaLoader.start({
|
||
|
url: '/static/resources-spa-web',
|
||
|
debug: true,
|
||
|
cacheGetFn: function(key) { return localStorage.getItem(key); },
|
||
|
cacheSetFn: function(key,value) { localStorage.setItem(key,value); },
|
||
|
cacheDelFn: function(key) { return localStorage.removeItem(key); }
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|