Skip to content

First Public Release of UpUp

Compare
Choose a tag to compare
@TalAter TalAter released this 16 Aug 20:04
· 177 commits to master since this release

UpUp is now officially ready for use in the wild.

Getting started with UpUp is as easy as adding two javascript files to your site, upup.min.js & upup.sw.min.js, and defining the content you want your users to see when they are offline.

For example:

<script src="/upup.min.js"></script>
<script>
UpUp.start({
  'content-url': 'offline.html',
  'assets': ['/img/logo.png', '/css/style.css', 'headlines.json']
});
</script>