Skip to content

Commit

Permalink
# 5.0.85 in PROD
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Oct 22, 2024
1 parent d235ab0 commit ae07583
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
### **Copyrigth**:
*Tiledesk SRL*

# 5.0.85 in PROD

# 5.0.83 in PROD

# 5.0.83-rc.4
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@chat21/chat21-web-widget",
"author": "Tiledesk SRL",
"version": "5.0.83",
"version": "5.0.85",
"license": "MIT",
"homepage": "https://www.tiledesk.com",
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions src/app/utils/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,10 +567,10 @@ export class Globals {
if(isOpen && isMobile){
//block body scroll
// window.parent.document.body.style.height = '100vh';
window.parent.document.body.style.height = '0';
window.parent.document.body.style.width = '100%';
window.parent.document.body.style.overflowY = 'hidden'
window.parent.document.body.style.position = 'fixed';
window.parent.document.body.style.setProperty('height', '0', 'important')
window.parent.document.body.style.setProperty('width', '100%', 'important')
window.parent.document.body.style.setProperty('overflow-y', 'hidden', 'important')
window.parent.document.body.style.setProperty('position', 'fixed', 'important')
}else if(!isOpen && isMobile){
//reset body style
window.parent.document.body.style.removeProperty('height')
Expand Down
2 changes: 1 addition & 1 deletion src/iframe-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
width: auto;
height: auto;
display: none;
z-index: 2000000000; /*999999*/;
z-index: 3000000000; /*999999*/;
}
#tiledeskdiv {
/* width: 100%;
Expand Down

0 comments on commit ae07583

Please sign in to comment.