13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
/**
|
|
* Change product.
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function changeProduct(productID)
|
|
{
|
|
link = createLink('execution', 'build', 'executionID=' + executionID + '&type=product¶m=' + productID);
|
|
location.href = link;
|
|
}
|