1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00

Fix problem with lazy loading images

Fixes @2263

Thanks @buggyj
This commit is contained in:
Jermolene 2016-05-02 10:29:26 +01:00
parent a11a4de6af
commit e3415796b2

View File

@ -87,6 +87,9 @@ ImageWidget.prototype.render = function(parent,nextSibling) {
src = _canonical_uri; src = _canonical_uri;
break; break;
} }
} else {
// Just trigger loading of the tiddler
this.wiki.getTiddlerText(this.imageSource);
} }
} }
} }