We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4afcd commit 412e503Copy full SHA for 412e503
src/ui-drawer/index.ts
@@ -880,7 +880,7 @@ export class Drawer extends GridLayout {
880
// apply tr data to prevent hickups on iOS
881
// and handle animation cancelled errors
882
if ((position !== 0 && this.mShowingSide === side) || (position === 0 && !this.mShowingSide)) {
883
- this.applyTrData(trData, side);
+ this.applyTrData(trData, this.mShowingSide);
884
if (position !== 0) {
885
// if (trData.backDrop) {
886
// this.backDrop.opacity = 1;
@@ -890,7 +890,7 @@ export class Drawer extends GridLayout {
890
if (drawer) {
891
drawer.visibility = 'hidden';
892
}
893
- if (this.backDrop && trData.backDrop) {
+ if (this.backDrop) {
894
this.backDrop.visibility = 'hidden';
895
896
0 commit comments