Files
EasySoft-ZenTaoPMS/module/task/js/common.js
2013-01-22 09:12:10 +00:00

17 lines
280 B
JavaScript

/* If left = 0, warning. */
function checkLeft()
{
value = $("#left").val();
if(isNaN(parseInt(value)) || value == 0)
{
if(confirm(confirmFinish))
{
return true;
}
else
{
return false;
}
}
}