Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
increase dismiss timeout, remove log line (#645)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhans authored Apr 30, 2020
1 parent a1afd79 commit d7b946b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/js/minwage/wage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export default function minWageHTML (cityWages, options, label, wageTranslations) {
console.log(wageTranslations)
// /*html*/ comment below required to enable es6-string-html vscode syntax highlighting
/* html */
return `<cwds-accordion>
Expand Down
2 changes: 1 addition & 1 deletion src/partials/experiment-banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

function alertLoad() {
if ((new Date().getTime() - localStorage.getItem('AlertDismissed') || 0) > 3600000)
if ((new Date().getTime() - localStorage.getItem('AlertDismissed') || 0) > 2592000000)
getAlertElement().classList.remove('d-none');
}

Expand Down

0 comments on commit d7b946b

Please sign in to comment.