shfty-webos / more-arrangers

A set of additional cross-platform arrangers for enyo.Panels. Supports hardware-accellerated 3D CSS transitions and falls back to 2D where required.
12 stars 3 forks source link

Button on tap insinde panel #1

Open areksiekiera opened 11 years ago

areksiekiera commented 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?

Shfty commented 11 years ago

I've experienced this behaviour with CSS transforms before, good catch- can you submit a pull request for this?