diff options
| author | 2013-08-25 00:14:01 +0200 | |
|---|---|---|
| committer | 2013-08-25 13:08:53 +0200 | |
| commit | 2eea5bbdeb24636aafa2808273eefa362c452b57 (patch) | |
| tree | 1f5a018d415c1bd5512d8cb7472b7fa31280279d /app/views/javascript | |
| parent | 31a6a13268023a2db5eba2445ee6c7db4a6d9623 (diff) | |
Big area mark as read
Added a big area to mark all as read below the list of articles
Diffstat (limited to 'app/views/javascript')
| -rw-r--r-- | app/views/javascript/main.phtml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/javascript/main.phtml b/app/views/javascript/main.phtml index 24d66c1dc..3ac8b675b 100644 --- a/app/views/javascript/main.phtml +++ b/app/views/javascript/main.phtml @@ -380,6 +380,14 @@ function init_nav_entries() { }); } +function init_bigMarkAsRead() { + $('.bigMarkAsRead').click(function() { + url = $(".nav_menu a.read_all").attr ("href"); + redirect (url, false); + return false; + }); +} + $(document).ready (function () { if(is_reader_mode()) { hide_posts = false; @@ -388,4 +396,5 @@ $(document).ready (function () { init_column_categories (); init_shortcuts (); init_nav_entries(); + init_bigMarkAsRead(); }); |
