RollDice/scripts/app.js
Saw, Hansly Kendrich f03997c4a4 added reward checking
2022-09-15 18:16:09 +08:00

14 lines
319 B
JavaScript

/* app.js
service workers
*/
var app = {
"name": "RollDice",
"description": "Chinese Dice Game",
"authors": ['buzz-lightsnack-2007'],
"sourcecode": "https://gitdab.com/buzz-lightsnack-2007/RollDice"
}
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('scripts/offline.js', { scope: '/' });
}