mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 17:31:29 +00:00
opening articles in new tab tweaks
This commit is contained in:
@@ -4660,7 +4660,7 @@
|
||||
|
||||
print "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
|
||||
class='tagsPic' style=\"cursor : pointer\"
|
||||
onclick=\"zoomToArticle(event, $id)\"
|
||||
onclick=\"postOpenInNewTab(event, $id)\"
|
||||
alt='Zoom' title='".__('Open article in new tab')."'>";
|
||||
|
||||
$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
|
||||
|
||||
13
viewfeed.js
13
viewfeed.js
@@ -210,13 +210,13 @@ function render_article(article) {
|
||||
dijit.byId("headlines-wrap-inner").addChild(
|
||||
dijit.byId("content-insert"));
|
||||
|
||||
var c = $("content-insert");
|
||||
var c = dijit.byId("content-insert");
|
||||
|
||||
try {
|
||||
c.scrollTop = 0;
|
||||
c.domNode.scrollTop = 0;
|
||||
} catch (e) { };
|
||||
|
||||
c.innerHTML = article;
|
||||
c.attr('content', article);
|
||||
|
||||
correctHeadlinesOffset(getActiveArticleId());
|
||||
|
||||
@@ -2073,7 +2073,7 @@ function postClicked(event, id) {
|
||||
if (!event.ctrlKey) {
|
||||
return true;
|
||||
} else {
|
||||
zoomToArticle(event, id);
|
||||
postOpenInNewTab(event, id);
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -2087,6 +2087,11 @@ function hlOpenInNewTab(event, id) {
|
||||
zoomToArticle(event, id);
|
||||
}
|
||||
|
||||
function postOpenInNewTab(event, id) {
|
||||
closeArticlePanel(id);
|
||||
zoomToArticle(event, id);
|
||||
}
|
||||
|
||||
function hlClicked(event, id) {
|
||||
try {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user