gears/formatTime.js

8 lines
135 B
JavaScript
Raw Permalink Normal View History

2019-11-10 19:54:50 +00:00
formatTime = function(t)
{
if (options.formatSelector == "24H")
return t.format("HH:mm")
else
return t.format("hh:mm A")
}