summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/views/details
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/js/lib/views/details')
-rw-r--r--public/assets/js/lib/views/details/commentform.js7
-rw-r--r--public/assets/js/lib/views/details/index.js2
2 files changed, 4 insertions, 5 deletions
diff --git a/public/assets/js/lib/views/details/commentform.js b/public/assets/js/lib/views/details/commentform.js
index 30671f2..3b82ac7 100644
--- a/public/assets/js/lib/views/details/commentform.js
+++ b/public/assets/js/lib/views/details/commentform.js
@@ -5,7 +5,7 @@ var CommentForm = FormView.extend({
events: {
},
- action: "/api/thread/1/comment",
+ action: "",
initialize: function(){
this.__super__.initialize.call(this)
@@ -26,8 +26,7 @@ var CommentForm = FormView.extend({
return errors.length ? errors : null
},
- success: function(comment){
- this.prependComment(comment)
- this.$("[name=comment]").val("")
+ success: function(){
+ window.location.reload()
}
}) \ No newline at end of file
diff --git a/public/assets/js/lib/views/details/index.js b/public/assets/js/lib/views/details/index.js
index 0a40dbc..25ae020 100644
--- a/public/assets/js/lib/views/details/index.js
+++ b/public/assets/js/lib/views/details/index.js
@@ -23,7 +23,7 @@ var DetailsView = View.extend({
populate: function(data){
var thread = data.thread
$("h1").html(thread.title)
- $(".subtitle").show().html(metadata(thread))
+ $(".subtitle").show().html("<a href='/'>&lt; Home</a> | " + metadata(thread))
this.form.load(data.thread)
this.comments.load(data.comments)
this.files.load(data.files)