diff options
author | Vyacheslav Bakhmutov <m0sth8@yandex-team.ru> | 2014-09-03 00:04:22 +0700 |
---|---|---|
committer | Vyacheslav Bakhmutov <m0sth8@yandex-team.ru> | 2014-09-03 00:04:22 +0700 |
commit | 2a7a03e5b3ca1f24b35003082902e7dda37991bc (patch) | |
tree | 3fbf2eb3e158700ac5636b2dc3e8b3f9a2750233 /public/js | |
parent | f19fc230d43dfcdc1f04cf7fbf611650029892bb (diff) | |
download | gitea-2a7a03e5b3ca1f24b35003082902e7dda37991bc.tar.gz gitea-2a7a03e5b3ca1f24b35003082902e7dda37991bc.zip |
take params for milestone and assignee from query instead of path args
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js index a5bb9569ef..2a7cf08bae 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -870,7 +870,7 @@ function initIssue() { $.post($m.data("ajax"), { issue: $('#issue').data("id"), - milestone: id + milestoneid: id }, function (json) { if (json.ok) { //window.location.reload(); |