Files
EasySoft-ZenTaoPMS/module/task/js/m.common.js
2013-06-21 09:02:58 +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;
}
}
}