Skip to content

Commit

Permalink
Merge pull request #799 from adobecom/MWPW-157982
Browse files Browse the repository at this point in the history
MWPW-157982
  • Loading branch information
Blainegunn authored Sep 13, 2024
2 parents c1ba66d + 4664eaf commit 0d6298f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acrobat/blocks/verb-widget/verb-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ export default async function init(element) {
const widgetHeading = createTag('h1', { class: 'verb-heading' }, children[0].textContent);
let mobileLink = null;
if (/iPad|iPhone|iPod/.test(window?.browser?.ua) && !window.MSStream) {
mobileLink = window.mph['verb-widget-apple-fillsign'];
mobileLink = window.mph[`verb-widget-apple-${VERB}`];
} else if (/android/i.test(window?.browser?.ua)) {
mobileLink = window.mph['verb-widget-google-fillsign'];
mobileLink = window.mph[`verb-widget-google-${VERB}`];
}

children.forEach((child) => {
Expand Down

0 comments on commit 0d6298f

Please sign in to comment.