mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-05 00:32:13 -08:00
FIX "Observe openLinkFromOutsideRiver ..." (#3516)
I assumed the attribute to be available but it's not
This commit is contained in:
parent
97b098b059
commit
aeaf5ee5b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue