fix missing curly brace

Fix the error:
```
SyntaxError: missing } after property list
```
This commit is contained in:
Jordan Galby 2018-12-13 15:10:32 +01:00
parent d3885c5883
commit 47b4a262cf
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ define(["dojo/_base/declare"], function (declare) {
</div>
<div class="right">
<i class="material-icons icon-score" title="${hl.score}" onclick="Article.setScore(${hl.id}, this)">${Article.getScorePic(hl.score)}</i>
<span onclick="Feeds.open({feed:${hl.feed_id})" style="cursor : pointer" title="${hl.feed_title}">${hl.feed_icon}</span>
<span onclick="Feeds.open({feed:${hl.feed_id}})" style="cursor : pointer" title="${hl.feed_title}">${hl.feed_icon}</span>
</div>
</div>
`;