Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Commit 5305596

Browse files
mbowermanmarkocikos
authored andcommitted
AUI-3204 Append "am" to times in the AM when using AM / PM format
1 parent 8a0f16c commit 5305596

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/aui-scheduler/js/aui-scheduler-base-event.js

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ var Lang = A.Lang,
2727
if (date.getHours() >= 12) {
2828
format.push('pm');
2929
}
30+
else {
31+
format.push('am');
32+
}
3033

3134
return format.join('');
3235
},

0 commit comments

Comments
 (0)