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

Merge pull request #1358 from aelocson/fix-1357

Fix #1357: Railroad plugin under Node.js
This commit is contained in:
Jeremy Ruston 2015-01-11 19:57:36 +00:00
commit 33603e1bd2

View File

@ -74,7 +74,7 @@ RailroadWidget.prototype.renderSvg = function(parser,div) {
RailroadWidget.prototype.patchLinks = function(node) {
var self = this;
if(node.hasChildNodes()) {
if(!$tw.node && node.hasChildNodes()) {
var children = node.childNodes;
for(var i=0; i<children.length; i++) {
var child = children[i];