From 70830c87c950e9c7b4267372acaedd8d0f9b7d58 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 5 Sep 2005 10:09:10 +0100 Subject: optional support for showing content in an iframe --- tt-rss.js | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 53360f813..de262f91c 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -423,11 +423,16 @@ function view(id,feed_id) { active_post_id = id; - xmlhttp_view.open("GET", "backend.php?op=view&id=" + param_escape(id), true); - xmlhttp_view.onreadystatechange=view_callback; - xmlhttp_view.send(null); - + var content = document.getElementById("content-frame"); + if (content) { + content.src = "backend.php?op=view&addheader=true&id=" + param_escape(id); + markHeadline(active_post_id); + } else { + xmlhttp_view.open("GET", "backend.php?op=view&id=" + param_escape(id), true); + xmlhttp_view.onreadystatechange=view_callback; + xmlhttp_view.send(null); + } } function timeout() { @@ -615,4 +620,6 @@ function init() { updateFeedList(false, false); document.onkeydown = hotkey_handler; setTimeout("timeout()", 1800*1000); + + var content = document.getElementById("content"); } -- cgit v1.2.3