summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/views/index
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-07 02:17:51 -0400
committerJules Laplace <jules@okfoc.us>2015-09-07 02:17:51 -0400
commit694dbdf6ff3eef3e33fcbe95ebd676eea3353dcc (patch)
tree91b2cf8a9310005e9bd6d1ff443ef7d593086271 /public/assets/js/lib/views/index
parentf5cd692caf98cfeddc61df6442d401619d264aa7 (diff)
linking urls
Diffstat (limited to 'public/assets/js/lib/views/index')
-rw-r--r--public/assets/js/lib/views/index/hootbox.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/assets/js/lib/views/index/hootbox.js b/public/assets/js/lib/views/index/hootbox.js
index 15de06b..9d1cc3d 100644
--- a/public/assets/js/lib/views/index/hootbox.js
+++ b/public/assets/js/lib/views/index/hootbox.js
@@ -17,7 +17,7 @@ var HootBox = FormView.extend({
parse: function(comment){
var t = this.template.replace(/{{username}}/g, comment.username)
- .replace(/{{comment}}/g, comment.comment)
+ .replace(/{{comment}}/g, tidy_urls(comment.comment, true))
return t
},