* finish the task #876

This commit is contained in:
areyou123456
2012-08-15 06:40:20 +00:00
parent 0891800ea2
commit d2d2cfc211

12
module/todo/js/common.js Normal file
View File

@@ -0,0 +1,12 @@
function switchDateTodo(switcher)
{
if(switcher.checked)
{
$('#date').attr('disabled','disabled');
}
else
{
$('#date').removeAttr('disabled');
}
}