in public/js/account.js [336:350]
renderFullUnsubscribeButton() {
const fullUnsubscribeButton = document.createElement("button");
fullUnsubscribeButton.textContent = "Unsubscribe from all podcasts";
fullUnsubscribeButton.classList.add("subscription-button");
fullUnsubscribeButton.id = "full-unsubscribe-button";
if (this.model.subscriptions.length === 2) {
fullUnsubscribeButton.classList.add("show");
}
fullUnsubscribeButton.addEventListener(
"click",
this.onFullUnsubscribeClick
);
return fullUnsubscribeButton;
}