Call bind() before accessing elements

This commit is contained in:
Aaron Yarborough 2020-04-11 20:32:53 +01:00
parent 5fd3a59406
commit 21b8364f6c

View file

@ -11,11 +11,11 @@ class Popup {
static async init(): Promise<void> { static async init(): Promise<void> {
const preferences: Preferences = await PreferencesRepository.get(); const preferences: Preferences = await PreferencesRepository.get();
this.bind();
this.hideLikesCheckbox.checked = preferences.hideLikes; this.hideLikesCheckbox.checked = preferences.hideLikes;
this.hideRepliesCheckbox.checked = preferences.hideReplies; this.hideRepliesCheckbox.checked = preferences.hideReplies;
this.hideRetweetsCheckbox.checked = preferences.hideRetweets; this.hideRetweetsCheckbox.checked = preferences.hideRetweets;
this.bind();
} }
static bind(): void { static bind(): void {