crewmate/crewmate

View on GitHub
public/javascripts/calendar_date_select/format_euro_24hr_ymd.js

Summary

Maintainability
A
1 hr
Test Coverage
// Formats date and time as "2000.01.20 17:00"
Date.prototype.toFormattedString = function(include_time)
{
   str = this.getFullYear() + "." + Date.padded2(this.getMonth()+1) + "." + Date.padded2(this.getDate());
   if (include_time) { str += " " + this.getHours() + ":" + this.getPaddedMinutes() }
   return str;
}