Skip to content

Commit

Permalink
Fix: Horizontal scroll creating new row on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajNyiri committed Oct 1, 2021
1 parent 9c4e732 commit 2249314
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/plex-meets-homeassistant.js
Original file line number Diff line number Diff line change
Expand Up @@ -21961,6 +21961,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
}
return false;
});
this.contentContainer.style.width = `${parseFloat(this.contentContainer.style.width) + 5}px`;
}
const contentbg = this.getElementsByClassName('contentbg')[0];
this.contentBGHeight = getHeight(contentbg);
Expand Down
1 change: 1 addition & 0 deletions src/plex-meets-homeassistant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
}
return false;
});
this.contentContainer.style.width = `${parseFloat(this.contentContainer.style.width) + 5}px`;
}

const contentbg = this.getElementsByClassName('contentbg')[0] as HTMLElement;
Expand Down

0 comments on commit 2249314

Please sign in to comment.