Skip to content

Commit

Permalink
#190 fix IE overlay (replace css transforms)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mrowetz committed Mar 25, 2017
1 parent 76c6248 commit 522df99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ts/waterfall/details-overlay/overlay-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default class OverlayManager implements OverlayManagerClass {
private realignBars(barEls: SVGGElement[]) {
barEls.forEach((bar, j) => {
let offset = this.getOverlayOffset(j);
bar.style.transform = `translate(0, ${offset}px)`;
bar.setAttribute("transform", `translate(0, ${offset})`);
});
}

Expand Down

0 comments on commit 522df99

Please sign in to comment.