8 lines
No EOL
135 B
JavaScript
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")
|
|
} |