summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-17 13:39:30 +0300
committerAndrew Dolgov <[email protected]>2010-11-17 13:40:38 +0300
commit8d3cb8c0a95e21bda7d4b35b41d32ea5eb4084bc (patch)
tree6c241dc9de78c98b88bb22f687024a6fb3965ff8 /tt-rss.js
parent500943a45b3993b28ceee7331ac0bf65ae22b636 (diff)
enable triple-pane theme; fix theme system not working
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 8121e94bc..f408197d2 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -282,9 +282,18 @@ function init() {
dojo.require("dijit.form.Select");
dojo.require("dojo.parser");
+ if (typeof themeBeforeLayout == 'function') {
+ themeBeforeLayout();
+ }
+
dojo.addOnLoad(function() {
updateFeedList();
closeArticlePanel();
+
+ if (typeof themeAfterLayout == 'function') {
+ themeAfterLayout();
+ }
+
});
if (!genericSanityCheck())