Disable statistics instead of the options button after translation has started (#423)

This commit is contained in:
Andre Natal 2022-06-28 01:51:13 -07:00 коммит произвёл GitHub
Родитель fcea3da1c0
Коммит 5e188d5d9c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -193,7 +193,7 @@ window.MozTranslationNotification = class extends MozElements.Notification {
);
this.state = this.translationNotificationManager.TranslationInfoBarStates.STATE_TRANSLATING;
this._getAnonElt("closeButton").disabled = true;
this._getAnonElt("options").disabled = true;
this._getAnonElt("displayStatistics").style.display = "none";
this._getAnonElt("aftertranslatedOptions").style.display = "block";
}