/** * Load branches * * @param int $productID * @access public * @return void */ function loadBranches(productID) { $('#branch').remove(); $('#branch_chosen').remove(); var oldBranch = 0; if(typeof(productGroups[productID]) != "undefined") { oldBranch = productGroups[productID]['branches']; } executionID = currentTab == 'execution' ? executionID : $('#execution').val(); $.get(createLink('branch', 'ajaxGetBranches', 'productID=' + productID + '&oldBranch=0¶m=active&projectID=' + executionID), function(data) { if(data) { $('#product').closest('.input-group').append(data); $('#branch').chosen(); } }); }