Skip to content

Commit 2969544

Browse files
committed
Merge branch 'master' into master-deprecated
2 parents fcf436f + 88ecdd9 commit 2969544

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/aui-scheduler/HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
## @VERSION@
66

7+
* [AUI-3204](https://issues.liferay.com/browse/AUI-3204) Time formatting for Calendar doesn't render "am" text when configured for AM/PM time format
78
* [AUI-3202](https://issues.liferay.com/browse/AUI-3202) Improving accessibility in calendar widget
89
* [AUI-3198](https://issues.liferay.com/browse/AUI-3198) Accessibility issues in Calendar widget
910
* [AUI-3186](https://issues.liferay.com/browse/AUI-3186) In Calendar portlet, when today's date is the last week of the year using monthly view, the blue border is cut out.

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

Lines changed: 3 additions & 0 deletions
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)