Open areksiekiera opened 11 years ago
Panels with IconButton. After transition button ontap didnt work in BoxTurnArranger and PageTurnArranger
BoxTurnArranger.js::70-71 c.setShowing(i == this.container.toIndex); c.applyStyle(this.vendor + "transform", "translateZ(0px) rotateY(0deg)");
PageTurnArranger.js::47-48 c.setShowing(i == this.container.toIndex); c.applyStyle("z-index", 1);
Adding this fixed the issue. Do you think it's ok to leave it like this?
I've experienced this behaviour with CSS transforms before, good catch- can you submit a pull request for this?
Panels with IconButton. After transition button ontap didnt work in BoxTurnArranger and PageTurnArranger
BoxTurnArranger.js::70-71 c.setShowing(i == this.container.toIndex); c.applyStyle(this.vendor + "transform", "translateZ(0px) rotateY(0deg)");
PageTurnArranger.js::47-48 c.setShowing(i == this.container.toIndex); c.applyStyle("z-index", 1);
Adding this fixed the issue. Do you think it's ok to leave it like this?