Files
EasySoft-ZenTaoPMS/module/task/js/record.js
2013-01-09 06:35:02 +00:00

17 lines
266 B
JavaScript

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