We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27d1a20 + 913953a commit 6a97a7cCopy full SHA for 6a97a7c
2 files changed
views/includes/footer.html
@@ -22,3 +22,5 @@
22
<!-- JS -->
23
<script type="text/javascript" charset="UTF-8" src="/redist/npm/jquery/dist/jquery.js"></script>
24
<script type="text/javascript" charset="UTF-8" src="/redist/npm/bootstrap/dist/js/bootstrap.js"></script>
25
+{{> includes/scripts/hideReminders.html }}
26
+
views/includes/scripts/hideReminders.html
@@ -0,0 +1,11 @@
1
+<script type="text/javascript">
2
+ (function () {
3
4
+ setTimeout(function () {
5
+ $('.reminders .alert .close').each(function () {
6
+ this.click();
7
+ });
8
+ }, 7000);
9
10
+ })();
11
+</script>
0 commit comments