Skip to content

Commit

Permalink
Merge pull request #861 from adobecom/MWPW-160606
Browse files Browse the repository at this point in the history
MWPW-160606
  • Loading branch information
Blainegunn authored Oct 18, 2024
2 parents 32b4f6c + 9c17c3d commit 2b919fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion acrobat/blocks/verb-widget/verb-widget.css
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
flex: 1 1 55%;
flex-direction: row;
padding: 48px 0 48px 48px;
cursor: pointer;
/* cursor: pointer; */
}

.verb-mobile-cta {
Expand Down
8 changes: 6 additions & 2 deletions acrobat/blocks/verb-widget/verb-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,12 @@ export default async function init(element) {
verbAnalytics('goto-app:clicked', VERB);
});

widget.addEventListener('click', () => {
if (!mobileLink) { button.click(); }
// widget.addEventListener('click', () => {
// if (!mobileLink) { button.click(); }
// });

widgetButton.addEventListener('click', () => {
button.click();
});

button.addEventListener('click', () => {
Expand Down

0 comments on commit 2b919fe

Please sign in to comment.