diff options
Diffstat (limited to 'public/assets/js/lib/views/index/threadbox.js')
| -rw-r--r-- | public/assets/js/lib/views/index/threadbox.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/assets/js/lib/views/index/threadbox.js b/public/assets/js/lib/views/index/threadbox.js index 9f12411..d9999a5 100644 --- a/public/assets/js/lib/views/index/threadbox.js +++ b/public/assets/js/lib/views/index/threadbox.js @@ -28,9 +28,11 @@ var ThreadBox = View.extend({ var files = hush_null(thread.file_count, "f") var dot = privacy_dot(thread.private) var datetime = verbose_date(thread.lastmodified) + var age = get_age(thread.lastmodified) + var id = thread.id + get_revision(thread) var t = this.template - .replace(/{{id}}/g, thread.id) + .replace(/{{id}}/g, id) .replace(/{{username}}/g, thread.username) .replace(/{{privacy_dot}}/g, dot) .replace(/{{title}}/g, thread.title) |
