1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-28 11:00:27 +00:00

Geomap: Do not attempt to render to fakedom

This commit is contained in:
Jeremy Ruston 2024-06-18 15:50:15 +01:00
parent ead36cf329
commit 6239384e7b

View File

@ -54,7 +54,7 @@ GeomapWidget.prototype.render = function(parent,nextSibling) {
parent.insertBefore(this.domNode,nextSibling);
this.domNodes.push(this.domNode);
// Render the map
if($tw.browser) {
if($tw.browser && !this.domNode.isTiddlyWikiFakeDom) {
this.renderMap();
this.refreshMap();
}