]> git.wh0rd.org Git - tt-rss.git/commitdiff
add getContentContext() and vieContentUrl() functions"
authorAndrew Dolgov <fox@bah.spb.su>
Wed, 30 Aug 2006 11:33:07 +0000 (12:33 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Wed, 30 Aug 2006 11:33:07 +0000 (12:33 +0100)
functions.js

index 3e0b0914672f22962c99343f1dc8571a29facf69..6fbabb69d0f730ecd07ee52fc92ab74955d5e67a 100644 (file)
@@ -1302,6 +1302,14 @@ function getFeedsContext() {
        }
 }
 
+function getContentContext() {
+       try {
+               return getMainContext().frames["content-frame"];
+       } catch (e) {
+               exception_error("getContentContext", e);
+       }
+}
+
 
 function getHeadlinesContext() {
        try {
@@ -1410,3 +1418,7 @@ function getFeedName(id, is_cat) {
                return null;
        }
 }
+
+function viewContentUrl(url) {
+       getContentContext().location = url;
+}