CC-3704: No default checked day when creating repeat show

-fixed
This commit is contained in:
Martin Konecny 2012-04-25 16:21:03 -04:00
parent 140c8d55ae
commit d04e053814
2 changed files with 32 additions and 0 deletions

View file

@ -11,6 +11,23 @@ function popup(mylink){
return false;
}
/* Take a string representing a date in the format 2012-04-25 and return
* a javascript date object representing this date. */
function getDateFromString(time){
var date = time.split("-");
if (date.length != 3){
return null;
}
var year = parseInt(date[0], 10);
var month = parseInt(date[1], 10) -1;
var day = parseInt(date[2], 10);
return new Date(year, month, day);
}
function convertSecondsToDaysHoursMinutesSeconds(seconds){
if (seconds < 0)
seconds = 0;