Commit 7c86f324 by Arjun Singh

Fixes the one broken thread in prod; it had no lettters in its ID, so the id was…

Fixes the one broken thread in prod; it had no lettters in its ID, so the id was being cast to a number.
parent b5351cc5
......@@ -106,7 +106,7 @@ if Backbone?
for thread in @displayedCollection.models
content = @renderThread(thread)
rendered.append content
content.wrap("<li class='list-item' data-id='#{thread.get('id')}' />")
content.wrap("<li class='list-item' data-id='\"#{thread.get('id')}\"' />")
@$(".post-list").html(rendered.html())
@renderMorePages()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment