1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +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) { RailroadWidget.prototype.patchLinks = function(node) {
var self = this; var self = this;
if(node.hasChildNodes()) { if(!$tw.node && node.hasChildNodes()) {
var children = node.childNodes; var children = node.childNodes;
for(var i=0; i<children.length; i++) { for(var i=0; i<children.length; i++) {
var child = children[i]; var child = children[i];