Skip to content

Commit

Permalink
Merge master (v1.33.2) into develop (#1158)
Browse files Browse the repository at this point in the history
Merge master (v1.33.2) into develop
  • Loading branch information
nmanu1 committed Dec 8, 2023
2 parents 1999838 + c66bc3f commit 7aff0d8
Show file tree
Hide file tree
Showing 8 changed files with 513 additions and 2,447 deletions.
20 changes: 0 additions & 20 deletions .github/run_browserstack_acceptance.sh

This file was deleted.

2,342 changes: 322 additions & 2,020 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "answers-hitchhiker-theme",
"version": "1.33.0",
"version": "1.33.2",
"description": "A starter Search theme for hitchhikers",
"keywords": [
"jambo",
Expand Down Expand Up @@ -60,7 +60,6 @@
"serve": "^13.0.4",
"simple-git": "^2.24.0",
"testcafe": "^1.18.6",
"testcafe-browser-provider-browserstack": "^1.13.1",
"underscore.string": "^3.3.6",
"urijs": "^1.19.11",
"yargs": "^17.0.1"
Expand Down
4 changes: 2 additions & 2 deletions static/js/iframe-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function generateIFrame(domain, answersExperienceFrame) {
// Parse the params out of the URL
var params = paramString.split('&'),
verticalUrl;
var referrerPageUrl = document.referrer.split('?')[0].split('#')[0];
var referrerPageUrl = encodeURIComponent(document.referrer.split('?')[0].split('#')[0]);

if (pathToIndex) {
verticalUrl = pathToIndex;
Expand Down Expand Up @@ -164,4 +164,4 @@ export function sendToIframe (obj) {
else {
iframe.iFrameResizer.sendMessage(obj);
}
}
}
2 changes: 1 addition & 1 deletion static/js/theme-map/VerticalFullPageMapOrchestrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class VerticalFullPageMapOrchestrator extends ANSWERS.Component {

function setFixedHeight(selector) {
const el = getSingleElement(selector)
el.style.height = `${el.scrollHeight}px`
el.style.minHeight = `${el.scrollHeight}px`
}
}

Expand Down
Loading

0 comments on commit 7aff0d8

Please sign in to comment.