From 901fc7b5dcc0acf08b3e85d2160034ee47daedb2 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 5 Jul 2013 00:37:44 +0200 Subject: Pass story id as POST parameter For some reason using a route template "stories/:id/tasks/new" works locally, but not on my server, so do without. --- static/js/main.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'static/js') diff --git a/static/js/main.js b/static/js/main.js index 7aac80d..60988df 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -103,8 +103,10 @@ var StoryTaskForm = React.createClass({ var StoryData = React.createClass({ handleTaskSubmit: React.autoBind(function (task) { + task.storyId = this.props.data.id; + $.ajax({ - url: "/stories/" + this.props.data.id + "/tasks/new", + url: "/stories/tasks/new", type: "POST", data: task, dataType: 'json', -- cgit v1.2.3-54-g00ecf