Support for repetitive alarms and tasks

This commit is contained in:
Ludovic Marcotte
2014-09-12 08:34:15 -04:00
parent 8cdaac6300
commit 12a4fd05a2
44 changed files with 921 additions and 552 deletions

View File

@@ -110,8 +110,10 @@ function onTimeControlCheck(checkBox) {
for (var i = 0; i < selects.length; i++)
if (selects[i] != checkBox)
selects[i].disabled = !checkBox.checked;
if (checkBox.id == "startDateCB")
if (checkBox.id == "startDateCB") {
$("repeatList").disabled = !checkBox.checked;
$("reminderList").disabled = !checkBox.checked;
}
}
}