mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-19 20:36:20 +00:00
spelling: recurring
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
e7d8692836
commit
182a722a55
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ let BookWyrm = new (class {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.MAX_FILE_SIZE_BYTES = 10 * 1000000;
|
this.MAX_FILE_SIZE_BYTES = 10 * 1000000;
|
||||||
this.initOnDOMLoaded();
|
this.initOnDOMLoaded();
|
||||||
this.initReccuringTasks();
|
this.initRecurringTasks();
|
||||||
this.initEventListeners();
|
this.initEventListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ let BookWyrm = new (class {
|
||||||
/**
|
/**
|
||||||
* Execute recurring tasks.
|
* Execute recurring tasks.
|
||||||
*/
|
*/
|
||||||
initReccuringTasks() {
|
initRecurringTasks() {
|
||||||
// Polling
|
// Polling
|
||||||
document.querySelectorAll("[data-poll]").forEach((liveArea) => this.polling(liveArea));
|
document.querySelectorAll("[data-poll]").forEach((liveArea) => this.polling(liveArea));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue