diff options
author | friendica <info@friendica.com> | 2014-11-10 14:23:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-10 14:23:06 -0800 |
commit | 0b4575a40b5412f0497c50560b0510a304599086 (patch) | |
tree | 1427882836407995e7652bd28b32054b8efb7960 /view | |
parent | 3b74e3c1e10ebe3cc8880b3b4ede57f919cb3d10 (diff) | |
download | volse-hubzilla-0b4575a40b5412f0497c50560b0510a304599086.tar.gz volse-hubzilla-0b4575a40b5412f0497c50560b0510a304599086.tar.bz2 volse-hubzilla-0b4575a40b5412f0497c50560b0510a304599086.zip |
class is a reserved word
Diffstat (limited to 'view')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index beedb7f01..a55b8fbb1 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -749,7 +749,7 @@ function updateConvItems(mode,data) { $("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark); $(data.notify).each(function() { - html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.class); + html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); $("#nav-" + notifyType + "-menu").append(html); }); $(".dropdown-menu img[data-src]").each(function(i, el){ |