1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-13 22:07:15 +00:00

Change logic of tv-hide-missing-links to tv-show-missing-links

See https://github.com/Jermolene/TiddlyWiki5/pull/3530#issuecomment-441368922
This commit is contained in:
Jermolene
2018-11-24 15:53:39 +00:00
parent 078df9c157
commit a83cd3f984
5 changed files with 5 additions and 5 deletions

View File

@@ -181,7 +181,7 @@ LinkWidget.prototype.execute = function() {
// Determine the link characteristics
this.isMissing = !this.wiki.tiddlerExists(this.to);
this.isShadow = this.wiki.isShadowTiddler(this.to);
this.hideMissingLinks = this.getVariable("tv-hide-missing-links") === "yes";
this.hideMissingLinks = (this.getVariable("tv-show-missing-links") || "yes") === "no";
// Make the child widgets
this.makeChildWidgets();
};