+ add js for mobi.

This commit is contained in:
zhujinyong
2013-06-21 09:02:58 +00:00
parent 0669d616e7
commit 006c53bfe7
+16
View File
@@ -0,0 +1,16 @@
/* If left = 0, warning. */
function checkLeft()
{
value = $("#left").val();
if(isNaN(parseInt(value)) || value == 0)
{
if(confirm(confirmFinish))
{
return true;
}
else
{
return false;
}
}
}