Commit 18be93c3 by David Baumgold

Don't ignore null datetimes on subsection settings

Clicking "Sync to <course>" should send an AJAX request with the datetimes
set to null, so that the server resets them.
parent 10344905
...@@ -313,9 +313,9 @@ function saveSubsection() { ...@@ -313,9 +313,9 @@ function saveSubsection() {
document.getElementById(name+"_date"), document.getElementById(name+"_date"),
document.getElementById(name+"_time") document.getElementById(name+"_time")
); );
if (datetime) { // if datetime is null, we want to set that in metadata anyway;
metadata[name] = datetime; // its an indication to the server to clear the datetime in the DB
} metadata[name] = datetime;
}); });
$.ajax({ $.ajax({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment