2
0
Fork 0
es5-ff-spa-loader/example/www_views/index.ejs
2015-12-23 01:16:54 +01:00

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>