Skip to content

Commit 6c1c119

Browse files
authored
Merge pull request #6177 from nickmelnikov82/fix-modebarbuttons-issue
Fix modeBarButtons issue
2 parents 57dee2e + 77383de commit 6c1c119

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

draftlogs/6177_fix.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fix custom modebar buttons mutate the input [[#6177](https://github.com/plotly/plotly.js/pull/6177)]

src/components/modebar/manage.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ var isUnifiedHover = require('../fx/helpers').isUnifiedHover;
88
var createModeBar = require('./modebar');
99
var modeBarButtons = require('./buttons');
1010
var DRAW_MODES = require('./constants').DRAW_MODES;
11+
var extendDeep = require('../../lib').extendDeep;
1112

1213
/**
1314
* ModeBar wrapper around 'create' and 'update',
@@ -330,7 +331,9 @@ function appendButtonsToGroups(groups, buttons) {
330331
}
331332

332333
// fill in custom buttons referring to default mode bar buttons
333-
function fillCustomButton(customButtons) {
334+
function fillCustomButton(originalModeBarButtons) {
335+
var customButtons = extendDeep([], originalModeBarButtons);
336+
334337
for(var i = 0; i < customButtons.length; i++) {
335338
var buttonGroup = customButtons[i];
336339

test/jasmine/tests/modebar_test.js

+9
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,15 @@ describe('ModeBar', function() {
996996
expect(countButtons(gd._fullLayout._modeBar))
997997
.toEqual(initialButtonCount + 6);
998998
});
999+
1000+
it('sets up buttons without changing the input', function() {
1001+
var config = [['toImage']];
1002+
var gd = setupGraphInfo();
1003+
gd._context.modeBarButtons = config;
1004+
manageModeBar(gd);
1005+
expect(config).toEqual([['toImage']]);
1006+
expect(countButtons(gd._fullLayout._modeBar)).toEqual(2);
1007+
});
9991008
});
10001009

10011010
describe('modebar on clicks', function() {

0 commit comments

Comments
 (0)