1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:35:55 +00:00

tweak filter preview layout a bit; allow previewing matched articles in a popup

This commit is contained in:
Andrew Dolgov
2015-09-11 13:05:08 +03:00
parent 3857536f70
commit f48f292d2b
3 changed files with 18 additions and 10 deletions

View File

@@ -2053,3 +2053,10 @@ function getSelectionText() {
return text.stripTags();
}
function openArticlePopup(id) {
window.open("backend.php?op=article&method=view&mode=raw&html=1&zoom=1&id=" + id +
"&csrf_token=" + getInitParam("csrf_token"),
"ttrss_article_popup",
"height=900,width=900,resizable=yes,status=no,location=no,menubar=no,directories=no,scrollbars=yes,toolbar=no");
}