summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tt-rss.js8
-rw-r--r--utils/notifier/options.html4
2 files changed, 11 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 6d3cc7377..81a40f211 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -332,6 +332,14 @@ function updateTitle(s) {
tmp = tmp + " > " + active_title_text;
}
+ if (window.fluid) {
+ if (global_unread > 0) {
+ window.fluid.dockBadge = global_unread;
+ } else {
+ window.fluid.dockBadge = "";
+ }
+ }
+
document.title = tmp;
}
diff --git a/utils/notifier/options.html b/utils/notifier/options.html
index 2988f41c8..014c2a3c7 100644
--- a/utils/notifier/options.html
+++ b/utils/notifier/options.html
@@ -160,6 +160,8 @@ fieldset span.note {
<input type="submit" value="Save"/>
</form>
- <p>Copyright &copy; 2010 <a target="_blank" href="http://tt-rss.org">Andrew Dolgov</a></p>
+ <p>Copyright &copy; 2010
+ <a target="_blank" href="http://tt-rss.org">Andrew Dolgov</a>.
+ Licensed under GNU GPL version 2.</p>
</body>