New Icons & Credits
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 328 B |
Before Width: | Height: | Size: 595 B After Width: | Height: | Size: 617 B |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 2.8 KiB |
@ -41,7 +41,7 @@
|
||||
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||
</form>
|
||||
</div>
|
||||
<div class="p-2 bd-highlight">Made with ❤ by <a href="https://jonatanrek.steelants.cz/">@JonatanRek</a></div>
|
||||
<div class="p-2 bd-highlight">Made with ❤ by <a href="https://jonatanrek.steelants.cz/">@JonatanRek</a>, Aldred11 & Vrky</div>
|
||||
<div class="p-2 bd-highlight"><a href="https://discord.gg/nsrT8DJ">Discord</a></div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Gaben Paradise",
|
||||
"short_name": "Gaben Paradise",
|
||||
"theme_color": "#0a0a0a",
|
||||
"theme_color": "#2e2b2b",
|
||||
"icons": [
|
||||
{
|
||||
"src": "./img/icons/android-chrome-192x192.png",
|
||||
@ -28,6 +28,6 @@
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "fullscreen",
|
||||
"background_color": "#000000",
|
||||
"background_color": "#2e2b2b",
|
||||
"gcm_sender_id": "338698464238"
|
||||
}
|
@ -1,11 +1,11 @@
|
||||
<template>
|
||||
<!--Notification Bar-->
|
||||
<div v-if="once">
|
||||
<div class="alert alert-danger" role="alert">
|
||||
Update Awailible
|
||||
<button type="button" class="btn btn-primary" v-on:click="refreshApp">
|
||||
Refresh
|
||||
</button>
|
||||
<div class="alert alert-danger d-flex justify-content-between" role="alert">
|
||||
<div class="align-self-center">Update availible!</div>
|
||||
<div>
|
||||
<button type="button" class="btn btn-primary" v-on:click="refreshApp">Refresh</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -23,10 +23,13 @@ self.addEventListener("push", function(event) {
|
||||
|
||||
self.addEventListener("notificationclick", function(event) {
|
||||
if (event.notification) {
|
||||
if (data.data) {
|
||||
if (event.notification.data) {
|
||||
var data = JSON.parse(event.notification.data.data);
|
||||
if (data[event.action]) {
|
||||
console.log(data);
|
||||
console.log(data);
|
||||
|
||||
|
||||
console.log(data[event.action]);
|
||||
clients.openWindow("" + data[event.action]);
|
||||
}
|
||||
|