Guestbook.prototype.toggleButton = function()

in text-moderation/public/main.js [114:120]


Guestbook.prototype.toggleButton = function() {
  if (this.messageInput.value && this.nameInput.value) {
    this.submitButton.removeAttribute('disabled');
  } else {
    this.submitButton.setAttribute('disabled', 'true');
  }
};