Fix navigation through list macro entry

print-window-tiddler
Jeremy Ruston 2012-11-04 17:28:21 +00:00
rodzic c58a75f834
commit 96145982d9
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -117,9 +117,7 @@ exports.createListElement = function(title) {
attributes = {"class": ["tw-list-element"]}, attributes = {"class": ["tw-list-element"]},
eventHandler = {handleEvent: function(event) { eventHandler = {handleEvent: function(event) {
// Add context information to the event // Add context information to the event
if(!event.navigateFromTitle) { event.navigateFromTitle = title;
event.navigateFromTitle = title;
}
return true; return true;
}}; }};
node.execute(this.parents,this.tiddlerTitle); node.execute(this.parents,this.tiddlerTitle);