From 96145982d9f346ae340f1d7737c74abc8030c6e2 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sun, 4 Nov 2012 17:28:21 +0000 Subject: [PATCH] Fix navigation through list macro entry --- core/modules/macros/list/list.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/modules/macros/list/list.js b/core/modules/macros/list/list.js index 8f1ea0e54..013e4a42c 100644 --- a/core/modules/macros/list/list.js +++ b/core/modules/macros/list/list.js @@ -117,9 +117,7 @@ exports.createListElement = function(title) { attributes = {"class": ["tw-list-element"]}, eventHandler = {handleEvent: function(event) { // Add context information to the event - if(!event.navigateFromTitle) { - event.navigateFromTitle = title; - } + event.navigateFromTitle = title; return true; }}; node.execute(this.parents,this.tiddlerTitle);