Skip to content

Commit

Permalink
Few fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aishwaryamathuria committed Sep 9, 2024
1 parent 1fdd5b1 commit 975e14e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions unitylibs/core/workflow/workflow-acrobat/action-binder.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ export default class ActionBinder {
{ body: JSON.stringify(cOpts) },
);
if (!response) return;
// window.location.href = continueResp.url;
console.log(response.url);
window.location.href = continueResp.url;
// console.log(response.url);
}

handleSplashScreen(params) {
Expand All @@ -142,7 +142,6 @@ export default class ActionBinder {
splashDom.classList.add('splash-loader');
splashDom.classList.remove('section');
const parSelector = (params.splashScreenConfig?.splashScreenParent) ? params.splashScreenConfig.splashScreenParent : 'main';
debugger;
const splashParent = document.querySelector(parSelector);
splashParent.prepend(splashDom);
}
Expand Down

0 comments on commit 975e14e

Please sign in to comment.