diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-05-17 17:24:08 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-05-17 17:24:08 +0200 |
commit | ad54e53f15761423a5cfad0102843f1ae2be83e3 (patch) | |
tree | 354da82f0e98c774e78ae94a004a1244a100ad84 /pyaggr3g470r/templates/home.html | |
parent | Finally, the side menu was easier to understand before. (diff) | |
download | newspipe-ad54e53f15761423a5cfad0102843f1ae2be83e3.tar.gz newspipe-ad54e53f15761423a5cfad0102843f1ae2be83e3.tar.bz2 newspipe-ad54e53f15761423a5cfad0102843f1ae2be83e3.zip |
The line of an unread articles is removed from the table when it is opened in a new tab.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r-- | pyaggr3g470r/templates/home.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index c2a8b114..3d0e3849 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -93,7 +93,7 @@ {% if filter_ == 'all' %}</b>{% endif %} {% endif %} </td> - <td><a href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td> + <td><a class="open-article" href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td> <td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}> <a href="/article/{{ article.id }}">{{ article.title|safe }}</a> </td> |