mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-04 08:12:14 -08:00
Typo
Typically for JavaScript, initialising an object as an array doesn’t break anything because an array is an object. Anyhow, it should be an object in this case.
This commit is contained in:
parent
7667225840
commit
7866f9b2de
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ exports.enqueueTiddlerEvent = function(title,isDeleted) {
|
|||
this.changeCount[title] = 1;
|
||||
}
|
||||
// Trigger events
|
||||
this.eventListeners = this.eventListeners || [];
|
||||
this.eventListeners = this.eventListeners || {};
|
||||
if(!this.eventsTriggered) {
|
||||
var self = this;
|
||||
$tw.utils.nextTick(function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue