Compare commits
4 Commits
v_1.10.3
...
update_sub
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
357449c1c6 | ||
|
|
de70522850 | ||
|
|
cf5f71d14e | ||
|
|
34b47e40ab |
@@ -500,13 +500,13 @@ var addConsoleOpenerToPreloader = function() {
|
|||||||
var preloader = document.getElementById('preloader');
|
var preloader = document.getElementById('preloader');
|
||||||
var button = document.createElement('a');
|
var button = document.createElement('a');
|
||||||
button.href = '#';
|
button.href = '#';
|
||||||
button.classList = 'btn btn-full rounded-s text-uppercase font-900 shadow-m bg-highlight m-3';
|
button.classList = 'btn rounded-s text-uppercase font-900 shadow-m m-3';
|
||||||
button.style.position = 'fixed';
|
button.style.position = 'fixed';
|
||||||
button.style.bottom = 0;
|
button.style.bottom = 0;
|
||||||
button.style.left = 0;
|
|
||||||
button.style.right = 0;
|
button.style.right = 0;
|
||||||
button.innerHTML = 'Show Console';
|
button.innerHTML = '</>';
|
||||||
button.onclick = function(){
|
button.onclick = function(){
|
||||||
|
alert('CONSOLE OPENED\nDir werden jetzt einige Entwickler-Informationen angezeigt. Du kannst die Console über das X oben rechts wieder schließen.');
|
||||||
mobileConsole.displayConsole();
|
mobileConsole.displayConsole();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
define('PWA_VERSION', '1.10.3');
|
define('PWA_VERSION', '1.10.3h2');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -311,3 +311,16 @@ self.addEventListener('notificationclick', function(event) {
|
|||||||
clients.openWindow(url)
|
clients.openWindow(url)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
self.addEventListener('pushsubscriptionchange', function(event) {
|
||||||
|
var formData = new URLSearchParams();
|
||||||
|
formData.append('old', JSON.stringify(event.oldSubscription));
|
||||||
|
formData.append('new', JSON.stringify(event.newSubscription));
|
||||||
|
event.waitUntil(
|
||||||
|
fetch('<?php echo QUERY_URL; ?>update_subscription', {
|
||||||
|
method: 'POST',
|
||||||
|
cache: 'no-cache',
|
||||||
|
body: formData
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user