summaryrefslogtreecommitdiff
path: root/plugins/no_title_counters/init.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-07-25 14:54:46 +0400
committerAndrew Dolgov <[email protected]>2013-07-25 14:54:46 +0400
commit1c8bcb580e046218ee9d07ec7d9f707fbd7b3219 (patch)
tree38d6ce01c0942601da3ce4ef2741ec5657f01729 /plugins/no_title_counters/init.js
parent1966e05457ebb537f2bfd11d779cada2489bcf35 (diff)
add simple plugin to prevent tt-rss tab flashing on new articles
Diffstat (limited to 'plugins/no_title_counters/init.js')
-rw-r--r--plugins/no_title_counters/init.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/no_title_counters/init.js b/plugins/no_title_counters/init.js
new file mode 100644
index 000000000..9c16856a2
--- /dev/null
+++ b/plugins/no_title_counters/init.js
@@ -0,0 +1,5 @@
+dojo.addOnLoad(function() {
+ updateTitle = function() {
+ document.title = "Tiny Tiny RSS";
+ };
+});