Files
EasySoft-ZenTaoPMS/module/kanban/js/create.js
T

15 lines
323 B
JavaScript

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