DesktopArticleTarget.init: Fix bad parameter to activateTarget()

The 4th parameter is a boolean 'modified', not a node. I'm not sure
what this was supposed to do. It looks like the parameter was being
ignored in all cases anyway.

Change-Id: I559ab2bdb02c4a3e39b44487cf36122332d61fd1
This commit is contained in:
Bartosz Dziewoński 2023-06-20 09:30:57 +02:00
parent ac4032eff5
commit 99b326286c

View file

@ -1293,7 +1293,7 @@
section = parseSection( linkUrl.searchParams.get( 'section' ) );
}
var tPromise = getTarget( mode, section );
activateTarget( mode, section, tPromise, e.target );
activateTarget( mode, section, tPromise );
}
},