We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040465e commit cab6264Copy full SHA for cab6264
src/plot_api/plot_api.js
@@ -3717,13 +3717,15 @@ function makePlotFramework(gd) {
3717
3718
// Plot container
3719
fullLayout._container = gd3.selectAll('.plot-container').data([0]);
3720
- fullLayout._container.enter().insert('div', ':first-child')
+ fullLayout._container.enter()
3721
+ .insert('div', ':first-child')
3722
.classed('plot-container', true)
3723
.classed('plotly', true);
3724
3725
// Make the svg container
3726
fullLayout._paperdiv = fullLayout._container.selectAll('.svg-container').data([0]);
3727
fullLayout._paperdiv.enter().append('div')
3728
+ .classed('user-select-none', true)
3729
.classed('svg-container', true)
3730
.style('position', 'relative');
3731
0 commit comments