FIX "Observe openLinkFromOutsideRiver ..." (#3516)

I assumed the attribute to be available but it's not
logging-improvements
BurningTreeC 2018-11-06 15:33:41 +01:00 zatwierdzone przez Jeremy Ruston
rodzic 97b098b059
commit aeaf5ee5b6
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -469,7 +469,7 @@ NavigatorWidget.prototype.handleNewTiddlerEvent = function(event) {
if(storyList.indexOf(draftTitle) === -1) {
var slot = storyList.indexOf(event.navigateFromTitle);
if(slot === -1) {
slot = this.openLinkFromOutsideRiver === "bottom" ? storyList.length - 1 : slot;
slot = this.getAttribute("openLinkFromOutsideRiver","top") === "bottom" ? storyList.length - 1 : slot;
}
storyList.splice(slot + 1,0,draftTitle);
}