Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
vincemtnz committed Mar 26, 2019
2 parents 249bc18 + 2fa6e92 commit cfa738d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/javascript/plugins/progress-tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ export default class ProgressTracker {
window.addEventListener(
'share',
() => {
$header.hide();
if ($('.overlay-visible').length > 0) {
$header.hide();
}
this.tick('shared');
},
false
);
$('.two-step__decline').on('click', () => {
$header.hide();
if ($('.overlay-visible').length > 0) {
$header.hide();
}
this.cross('shared');
});
}
Expand Down

0 comments on commit cfa738d

Please sign in to comment.