mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-11-28 13:05:14 +00:00
Remove invokeSyncers() method from wiki.js
This commit is contained in:
@@ -602,19 +602,6 @@ exports.initSyncers = function() {
|
||||
});
|
||||
};
|
||||
|
||||
/*
|
||||
Invoke all the active syncers
|
||||
*/
|
||||
exports.invokeSyncers = function(method /* ,args */) {
|
||||
var args = Array.prototype.slice.call(arguments,1);
|
||||
for(var name in this.syncers) {
|
||||
var syncer = this.syncers[name];
|
||||
if(syncer[method]) {
|
||||
syncer[method].apply(syncer,args);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
Trigger a load for a tiddler if it is skinny. Returns the text, or undefined if the tiddler is missing, null if the tiddler is being lazily loaded.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user