1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00

(feat) add a new button to automatically refresh the public calendar

This commit is contained in:
Du Peng 2024-06-12 16:27:25 +02:00
parent 0d0103eb39
commit dfb5f2222b
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Next release
- Fix a bug: unable to show gender wowan in member export
- Add a new feature: add a new button to automatically refresh the public calendar
## v6.3.26 2024 June 5

View File

@ -218,7 +218,8 @@ Application.Controllers.controller('CalendarController', ['$scope', '$state', '$
$scope.autoRefresh = undefined;
stopRedirectPage = false;
} else {
$scope.autoRefresh = $interval(refreshCalendar, 10000);
// refresh calendar every 1 minute
$scope.autoRefresh = $interval(refreshCalendar, 60000);
stopRedirectPage = true;
}
};