From ad62b7e30f0c5086876695e6f9a9fc28a0571639 Mon Sep 17 00:00:00 2001 From: Tyler Distad Date: Tue, 8 Dec 2015 17:16:43 -0500 Subject: [PATCH] idiomatically set zIndex when creating the Cartesian plot dragCover/coverSlip --- src/plots/cartesian/graph_interact.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plots/cartesian/graph_interact.js b/src/plots/cartesian/graph_interact.js index 9994260899c..ad122c5ba9e 100644 --- a/src/plots/cartesian/graph_interact.js +++ b/src/plots/cartesian/graph_interact.js @@ -2060,7 +2060,7 @@ function coverSlip() { cStyle.right = 0; cStyle.top = 0; cStyle.bottom = 0; - cStyle['z-index'] = 999999999; + cStyle.zIndex = 999999999; cStyle.background = 'none'; document.body.appendChild(cover);