INNER CODE UNIT · JavaScript

updateBtn

Is-Daouda/is-Engine · app/src/main/web/scripts/main.js:110

function updateBtn() {
  if (Notification.permission === 'denied') {
    pushButton.textContent = 'Push Messaging Blocked.';
    pushButton.disabled = true;
    updateSubscriptionOnServer(null);
    return;
  }

  if (isSubscribed) {
    pushButton.textContent = 'Disable Push Messaging';
  } else {
    pushButton.textContent = 'Enable Push Messaging';
  }

  pushButton.disabled = false;
}

// Allows to initialize UI components

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…