* Fix bugs.

This commit is contained in:
hufangzhou
2021-01-21 16:03:34 +08:00
parent 8ca990dfb8
commit 1bfaba7751
15 changed files with 122 additions and 44 deletions
+12
View File
@@ -7,6 +7,18 @@ $(function()
adjustProductBoxMargin();
adjustPlanBoxMargin();
/* If the story of the product which linked the execution under the project, you don't allow to remove the product. */
$("#productsBox select").each(function()
{
var isExisted = $.inArray($(this).attr('data-last'), notRemoveProducts);
if(isExisted != -1)
{
$(this).prop('disabled', true).trigger("chosen:updated");
$(this).siblings('div').find('span').attr('title', tip);
}
});
});
/**