summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/main.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/main.js b/js/main.js
index ae1b7eace..bde28dd23 100644
--- a/js/main.js
+++ b/js/main.js
@@ -105,9 +105,11 @@ $(document).ready(function(){
if($(this).hasClass('show_all')){
data.showAll = false;
$(this).addClass('show_unread').removeClass('show_all');
+ $(this).attr('title', t('news', 'Show only unread'));
} else {
data.showAll = true;
$(this).addClass('show_all').removeClass('show_unread');
+ $(this).attr('title', t('news', 'Show everything'));
}
News.Objects.Menu.triggerHideRead();