add (disabled) function to show original article inline in the content pane
This commit is contained in:
parent
e5f51ff04d
commit
4710e3dc03
|
@ -428,6 +428,13 @@ function hide_footer_af(effect) {
|
|||
|
||||
if (c) {
|
||||
c.style.bottom = "0px";
|
||||
|
||||
var ioa = document.getElementById("inline_orig_article");
|
||||
|
||||
if (ioa) {
|
||||
ioa.height = c.offsetHeight;
|
||||
}
|
||||
|
||||
} else {
|
||||
var h = document.getElementById("headlines-frame");
|
||||
|
||||
|
|
|
@ -4712,8 +4712,18 @@
|
|||
if (!$zoom_mode) {
|
||||
print "$tags_str
|
||||
<a title=\"".__('Edit tags for this article')."\"
|
||||
href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a>
|
||||
<img src=\"images/art-zoom.png\" class='tagsPic'
|
||||
href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a>";
|
||||
|
||||
if (defined('_ENABLE_INLINE_VIEW')) {
|
||||
|
||||
print "<img src=\"images/art-inline.png\" class='tagsPic'
|
||||
onclick=\"showOriginalArticleInline($id)\"
|
||||
alt='Inline' title='".__('Display original article content')."'>";
|
||||
|
||||
}
|
||||
|
||||
print "<img src=\"images/art-zoom.png\" class='tagsPic'
|
||||
style=\"cursor : pointer\"
|
||||
style=\"cursor : pointer\"
|
||||
onclick=\"zoomToArticle($id)\"
|
||||
alt='Zoom' title='".__('Show article summary in new window')."'>";
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 255 B |
25
tt-rss.css
25
tt-rss.css
|
@ -316,31 +316,6 @@ div.expPane {
|
|||
margin : 15px;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border : 0px solid white;
|
||||
}
|
||||
|
||||
iframe.feedsFrameWithActions {
|
||||
width : 100%;
|
||||
height : 90%;
|
||||
margin : 0px;
|
||||
padding : 0px;
|
||||
}
|
||||
|
||||
iframe.feedsFrame {
|
||||
width : 100%;
|
||||
height : 100%;
|
||||
margin : 0px;
|
||||
padding : 0px;
|
||||
}
|
||||
|
||||
iframe.contentFrame, iframe.headlinesFrame {
|
||||
width : 100%;
|
||||
padding : 0px;
|
||||
margin : 0px;
|
||||
height : 100%;
|
||||
}
|
||||
|
||||
/*.button {
|
||||
border : 1px solid #d0d0d0;
|
||||
background-image : url("images/button.png");
|
||||
|
|
36
viewfeed.js
36
viewfeed.js
|
@ -1904,6 +1904,42 @@ function zoomToArticle(id) {
|
|||
}
|
||||
}
|
||||
|
||||
function showOriginalArticleInline(id) {
|
||||
try {
|
||||
|
||||
var query = "backend.php?op=rpc&subop=getArticleLink&id=" + id;
|
||||
|
||||
notify_progress("Loading, please wait...", true);
|
||||
|
||||
new Ajax.Request(query, {
|
||||
onComplete: function(transport) {
|
||||
|
||||
if (transport.responseXML) {
|
||||
|
||||
var link = transport.responseXML.getElementsByTagName("link")[0];
|
||||
var id = transport.responseXML.getElementsByTagName("id")[0];
|
||||
|
||||
notify("");
|
||||
|
||||
if (link && id) {
|
||||
link = link.firstChild.nodeValue;
|
||||
|
||||
var ci = document.getElementById("content-insert");
|
||||
|
||||
var tmp = "<iframe id=\"inline_orig_article\" width=\""+ci.offsetWidth+"\" height=\""+ci.offsetHeight+"\" style=\"border-width : 0px;\" src=\""+link+"\"></iframe>";
|
||||
|
||||
render_article(tmp);
|
||||
|
||||
}
|
||||
}
|
||||
} });
|
||||
|
||||
} catch (e) {
|
||||
exception_error("showOriginalArticleInline", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function scrollArticle(offset) {
|
||||
try {
|
||||
if (!isCdmMode()) {
|
||||
|
|
Loading…
Reference in New Issue