Skip to content

Commit 3b30902

Browse files
authored
Merge pull request #12 from koterpillar/fix-au-labour-day
Correct Labour Day date in Victoria, Australia
2 parents 6ee69a8 + 45fa268 commit 3b30902

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

js/holidays.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ function checkHoliday( year, month, day ) {
3939
...observed( year, 1, 1, country, 'New Year\'s Day' ),
4040
...observed( year, 1, 26, country, 'Australia Day' ),
4141
...inRegions(['tas'], { date: floatingDoW( 1, year, 2, 8 ), name: 'Royal Hobart Regatta' }),
42-
...inRegions(['vic', 'wa'], { date: floatingDoW( 1, year, 3, 1 ), name: 'Labour Day' }),
42+
...inRegions(['wa'], { date: floatingDoW( 1, year, 3, 1 ), name: 'Labour Day' }),
43+
...inRegions(['vic'], { date: floatingDoW( 1, year, 3, 8 ), name: 'Labour Day' }),
4344
...inRegions(['act'], { date: floatingDoW( 1, year, 3, 8 ), name: 'Canberra Day' }),
4445
...inRegions(['sa'], { date: floatingDoW( 1, year, 3, 8 ), name: 'Adelaide Cup Day' }),
4546
...inRegions(['tas'], { date: floatingDoW( 1, year, 3, 8 ), name: 'Eight Hours Day' }),

0 commit comments

Comments
 (0)