Files
EasySoft-ZenTaoPMS/module/kanban/js/create.js
2022-01-21 12:16:16 +08:00

15 lines
311 B
JavaScript

/**
* When space type or space value change.
*
* @oaram int spaceID
* @param string type
* @access public
* @return void
*/
function changeValue(spaceID, type = '')
{
if(type == '') type = spaceType;
location.href = createLink('kanban', 'create', 'spaceID=' + spaceID + '&type=' + type);
}