1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 17:53:15 +00:00

Fix navigation through list macro entry

This commit is contained in:
Jeremy Ruston 2012-11-04 17:28:21 +00:00
parent c58a75f834
commit 96145982d9

View File

@ -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);