Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/controllers/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { filterBy } from '@ember/object/computed';
import Controller from '@ember/controller';
import moment from 'moment-timezone';
import { tracked } from '@glimmer/tracking';

import { later } from '@ember/runloop';

@classic
export default class ApplicationController extends Controller {
Expand Down Expand Up @@ -51,7 +51,9 @@ export default class ApplicationController extends Controller {
@action
hideCookieMessage() {
this.getCookieSeen(true);
this.showCookie = false;
later(this, () => {
this.showCookie = false;
}, 2000);
}

@action
Expand Down