gears/formatTime.js
2019-11-10 14:54:50 -05:00

8 lines
No EOL
135 B
JavaScript

formatTime = function(t)
{
if (options.formatSelector == "24H")
return t.format("HH:mm")
else
return t.format("hh:mm A")
}