]> git.wh0rd.org - tt-rss.git/commitdiff
digest: utilize sanity checking on init
authorAndrew Dolgov <fox@bah.org.ru>
Mon, 13 Sep 2010 11:17:26 +0000 (15:17 +0400)
committerAndrew Dolgov <fox@bah.org.ru>
Mon, 13 Sep 2010 11:17:26 +0000 (15:17 +0400)
digest.js

index d6dc41e8a02dab5aa5de96e1ef526bee358f8d33..8659c8fb3c66e7a7905817b722dfe234a17a888c 100644 (file)
--- a/digest.js
+++ b/digest.js
@@ -1,4 +1,8 @@
 var last_feeds = [];
+var init_params = {};
+
+var db = false;
+var store = false;
 
 var _active_feed_id = false;
 var _active_feed_offset = false;
@@ -309,7 +313,7 @@ function find_feed(feeds, feed_id) {
 function get_feed_icon(feed) {
        try {
                if (feed.has_icon)
-                       return 'icons/' + feed.id + '.ico';
+                       return getInitParam('icons_location') + "/" + feed.id + '.ico';
 
                if (feed.id == -1)
                        return 'images/mark_set.png';
@@ -592,22 +596,13 @@ function init_second_stage() {
        }
 }
 
-function sanity_check(transport) {
-       try {
-
-
-       } catch (e) {
-               exception_error("sanity_check", e);
-       }
-}
-
 function init() {
        try {
 
                new Ajax.Request("backend.php", {
                        parameters: "?op=rpc&subop=sanityCheck",
                        onComplete: function(transport) { 
-                               sanity_check(transport);
+                               backend_sanity_check_callback(transport);
                        } });
 
        } catch (e) {