We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0978f39 commit c26b622Copy full SHA for c26b622
build/media_source/system/js/fields/calendar.es5.js
@@ -653,6 +653,11 @@
653
}
654
this.firstdayname = (this.params.weekNumbers) ? row.firstChild.nextSibling : row.firstChild;
655
656
+ // Check if the direction is 'rtl' and reverse the shortDays array if true
657
+ if (this.params.direction === 'rtl') {
658
+ this.strings.shortDays.reverse();
659
+ }
660
+
661
var fdow = this.params.firstDayOfWeek,
662
cell = this.firstdayname,
663
weekend = this.params.weekend;
0 commit comments