diff options
author | friendica <info@friendica.com> | 2012-02-25 03:28:07 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-25 03:28:07 -0800 |
commit | 4839c235da1ce6ed61c71d0a9d28df14c01b567b (patch) | |
tree | f0b92637c311bf3e31cddd37448eda6d7ee3249e /js/main.js | |
parent | aa67771eaacec38f972dbd749235d395cdd724b5 (diff) | |
download | volse-hubzilla-4839c235da1ce6ed61c71d0a9d28df14c01b567b.tar.gz volse-hubzilla-4839c235da1ce6ed61c71d0a9d28df14c01b567b.tar.bz2 volse-hubzilla-4839c235da1ce6ed61c71d0a9d28df14c01b567b.zip |
theme seen,unseen notifications
Diffstat (limited to 'js/main.js')
-rwxr-xr-x | js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js index 3a10ae468..36ef946ca 100755 --- a/js/main.js +++ b/js/main.js @@ -124,7 +124,7 @@ eNotif.children("note").each(function(){ e = $(this); text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>"); - html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date')); + html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'), e.attr('seen')); nnm.append(html); }); |