1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Syncer: add hidden setting for disabling lazy loading

This commit is contained in:
Jeremy Ruston 2019-10-25 10:02:57 +01:00
parent 6fa3e21116
commit 43d18e74d5
2 changed files with 11 additions and 1 deletions

View File

@ -21,6 +21,7 @@ Syncer.prototype.titleIsReadOnly = "$:/status/IsReadOnly";
Syncer.prototype.titleUserName = "$:/status/UserName";
Syncer.prototype.titleSyncFilter = "$:/config/SyncFilter";
Syncer.prototype.titleSyncPollingInterval = "$:/config/SyncPollingInterval";
Syncer.prototype.titleSyncDisableLazyLoading = "$:/config/SyncDisableLazyLoading";
Syncer.prototype.titleSavedNotification = "$:/language/Notifications/Save/Done";
Syncer.prototype.taskTimerInterval = 1 * 1000; // Interval for sync timer
Syncer.prototype.throttleInterval = 1 * 1000; // Defer saving tiddlers if they've changed in the last 1s...
@ -87,7 +88,7 @@ function Syncer(options) {
});
}
// Listen out for lazyLoad events
if(!this.disableUI) {
if(!this.disableUI && $tw.wiki.getTiddlerText(this.titleSyncDisableLazyLoading) !== "yes") {
this.wiki.addEventListener("lazyLoad",function(title) {
self.handleLazyLoadEvent(title);
});

View File

@ -0,0 +1,9 @@
created: 20191025100113266
modified: 20191025100113266
tags: [[Hidden Settings]]
title: Hidden Setting: Disable Lazy Loading
type: text/vnd.tiddlywiki
LazyLoading can be disabled by setting this value to `yes`
$:/config/SyncDisableLazyLoading