From 880efd3e72c9ac06b0f26502cdaa91ec363b6ce1 Mon Sep 17 00:00:00 2001 From: danielgrippi Date: Tue, 17 Jan 2012 17:53:02 -0800 Subject: [PATCH] use '/reshare' instead of 'reshare/' to ensure the correct path (js) --- public/javascripts/app/models/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/app/models/post.js b/public/javascripts/app/models/post.js index 4cabdaa1b..b9641156d 100644 --- a/public/javascripts/app/models/post.js +++ b/public/javascripts/app/models/post.js @@ -15,7 +15,7 @@ app.models.Post = Backbone.Model.extend({ } }, - reshareUrl : "reshares/", + reshareUrl : "/reshares", reshare : function(){ return this._reshare = this._reshare || new app.models.Reshare({root_guid : this.get("guid")}); },