From 780108c939fe49a512df40995f11d3cd29414aec Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Fri, 22 Jun 2012 13:51:38 +0100 Subject: [PATCH] Adjust position of opened tiddlers --- core/modules/macros/story/story.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/macros/story/story.js b/core/modules/macros/story/story.js index baddf6722..bcc6bbe90 100644 --- a/core/modules/macros/story/story.js +++ b/core/modules/macros/story/story.js @@ -50,7 +50,7 @@ exports.handleEvent = function(event) { }; /* -Return the index of the story element that contains the specified tree node. Returns story.length if not found +Return the index of the story element that contains the specified tree node. Returns -1 if none */ exports.findStoryElementContainingNode = function(node) { // Get the DOM node contained by the target node @@ -58,7 +58,7 @@ exports.findStoryElementContainingNode = function(node) { node = node.child; } // Step through the story elements - var slot = this.storyNode.children.length; + var slot = -1; for(var t=0; t