1
0
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:
Jeremy Ruston
2013-03-16 10:58:47 +00:00
parent 854e8d7083
commit 71aa79013d
3 changed files with 10 additions and 23 deletions

View File

@@ -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.
*/