Skip to content
Snippets Groups Projects
Commit b47c83b4 authored by Miguel Braidot's avatar Miguel Braidot
Browse files

Fechas se guardan en segundos y no en microsegundos, ya que now se expresa en segundos

parent 7f4b9e20
No related branches found
No related tags found
No related merge requests found
......@@ -273,7 +273,7 @@
function returnDate(d, t) {
var date = new Date(d + " " + t);
return date.getTime();
return date.getTime()/1000|0;
}
function sendResults() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment