Closed GoogleCodeExporter closed 8 years ago
We changed the translatey() method to translate3d(0,y,0) and started working
fine for you. There are 3 instances in the bookmark_bubble.js which we have to
change.
Example,
Change
this.element_.style.WebkitTransform = 'translateY(' +
this.getHiddenYPosition_() + 'px)';
to
this.element_.style.WebkitTransform = 'translate3d(0,' +
this.getHiddenYPosition_() + 'px,0)';
Original comment by uday.ray...@gmail.com
on 23 Nov 2010 at 11:28
Thanks for pointing this out! I've updated the code to use translate3d()
instead of translateY() everywhere as of revision 32ec3c8e64.
Original comment by ntho...@google.com
on 24 Nov 2010 at 1:43
Original issue reported on code.google.com by
uday.ray...@gmail.com
on 23 Nov 2010 at 11:21