diff --git a/pwa-pwastore/app.js b/pwa-pwastore/app.js new file mode 100644 index 0000000..ebe1b7f --- /dev/null +++ b/pwa-pwastore/app.js @@ -0,0 +1,19 @@ +// All of the UI DOM elements we need. +const pwinterBtn = document.getElementById("installPwinter"); +const pwampBtn = document.getElementById("installPwamp"); +const bubbleBtn = document.getElementById("installBubble"); + +pwinterBtn.addEventListener("click", () => { + navigator.install("https://diek.us/pwinter/index.html?randomize=true", + "https://diek.us/pwinter/") +}); + +pwampBtn.addEventListener("click", () => { + navigator.install("https://microsoftedge.github.io/Demos/pwamp/", + "https://microsoftedge.github.io/Demos/pwamp/") +}); + +bubbleBtn.addEventListener("click", () => { + navigator.install("https://diek.us/bubble/index.html", + "https://diek.us/bubble/") +}); diff --git a/pwa-pwastore/index.html b/pwa-pwastore/index.html index 9b0016e..e0f7626 100644 --- a/pwa-pwastore/index.html +++ b/pwa-pwastore/index.html @@ -13,7 +13,7 @@ - +
@@ -31,36 +31,37 @@

The PWinter

Custom PWA icon generator.

- +

PWAmp

Music player, but make it progressive.

- +

Bubble

Equirectangular picture viewer.

- +
- + + \ No newline at end of file