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

19 lines
506 B
Plaintext
Raw Normal View History

2015-12-23 00:16:54 +00:00
<!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>