fix issue label ajax

This commit is contained in:
FuXiaoHei 2014-05-24 13:39:12 +08:00
parent 5e9a45f74a
commit 50ba08e2c6
1 changed files with 6 additions and 3 deletions

View File

@ -620,6 +620,7 @@ function initIssue() {
});
// labels
var removeLabels = [];
$('#label-manage-btn').on("click", function () {
var $list = $('#label-list');
if ($list.hasClass("managing")) {
@ -630,7 +631,7 @@ function initIssue() {
ids.push(id);
}
});
$.post($list.data("ajax"), {"ids": ids.join(",")}, function (json) {
$.post($list.data("ajax"), {"ids": ids.join(","), "remove": removeLabels.join(",")}, function (json) {
if (json.ok) {
window.location.reload();
}
@ -653,14 +654,16 @@ function initIssue() {
}
});
$("#label-list").on('click', '.del', function () {
$(this).parent().remove();
var $p = $(this).parent();
removeLabels.push($p.data('id'));
$p.remove();
return false;
});
$('.issue-bar .labels .dropdown-menu').on('click', 'li', function (e) {
var url = $('.issue-bar .labels').data("ajax");
var id = $(this).data('id');
var check = $(this).hasClass("checked");
$.post(url, {id: id, action: check ? 'detach' : "attach"}, function (json) {
$.post(url, {id: id, action: check ? 'detach' : "attach", issue: $('#issue').data('id')}, function (json) {
if (json.ok) {
window.location.reload();
}