mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add PWA + ServiceWorker with offline support
This commit is contained in:
parent
22c321a998
commit
78ee44662c
3 changed files with 68 additions and 1 deletions
61
public/offline.html
Normal file
61
public/offline.html
Normal file
File diff suppressed because one or more lines are too long
BIN
public/sw.js
vendored
Normal file
BIN
public/sw.js
vendored
Normal file
Binary file not shown.
8
resources/assets/js/app.js
vendored
8
resources/assets/js/app.js
vendored
|
@ -34,6 +34,12 @@ window.App.boot = function() {
|
|||
new Vue({ el: '#content'});
|
||||
}
|
||||
|
||||
window.addEventListener("load", () => {
|
||||
if ("serviceWorker" in navigator) {
|
||||
navigator.serviceWorker.register("/sw.js");
|
||||
}
|
||||
});
|
||||
|
||||
window.App.util = {
|
||||
compose: {
|
||||
post: (function() {
|
||||
|
@ -230,4 +236,4 @@ window.App.util = {
|
|||
.attr('width', 34).attr('height', 34);
|
||||
})
|
||||
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue