Skip to content

Commit 9ec32e8

Browse files
authored
Fix missing cursor for ternary plot
1 parent 8835add commit 9ec32e8

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/plots/ternary/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ exports.updateFx = function(gd) {
8383
var dragmode = fullLayout.dragmode;
8484
var toplevel = d3.select(gd).selectAll('g.toplevel');
8585

86-
// set proper cursor
8786
if(dragmode === 'pan') {
8887
toplevel.style('cursor', 'move');
8988
} else {

src/plots/ternary/ternary.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ proto.makeFramework = function(fullLayout) {
101101
proto.updateFx = function(dragmode) {
102102
var toplevel = this.plotContainer.selectAll('g.toplevel');
103103

104-
// set proper cursor
105104
if(dragmode === 'pan') {
106105
toplevel.style('cursor', 'move');
107106
} else {

0 commit comments

Comments
 (0)