summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJordan Galby <[email protected]>2018-12-13 15:10:32 +0100
committerJordan Galby <[email protected]>2018-12-13 15:10:32 +0100
commit47b4a262cf3dd016b13271592144d638dd307196 (patch)
tree1ccf1fc640cbc2d2f836ef95949685196d7095b7 /js
parentd3885c58831caa3e7cf75e12c2f46eb49c4054f8 (diff)
fix missing curly brace
Fix the error: ``` SyntaxError: missing } after property list ```
Diffstat (limited to 'js')
-rwxr-xr-xjs/Headlines.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 1fd2efe25..bbf48738b 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -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>
`;