Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/plot_api/plot_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ function setPlotContext(gd, config) {
context.setBackground = setBackground;
}

// Check if gd has a specified widht/height to begin with
// Check if gd has a specified width/height to begin with
context._hasZeroHeight = context._hasZeroHeight || gd.clientHeight === 0;
context._hasZeroWidth = context._hasZeroWidth || gd.clientWidth === 0;

Expand Down
2 changes: 1 addition & 1 deletion src/plots/cartesian/layout_defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
delete axLayoutOut.spikesnap;
}

// If it exists, the the domain of the axis for the anchor of the overlaying axis
// If it exists, the domain of the axis for the anchor of the overlaying axis
var overlayingAxis = id2name(axLayoutIn.overlaying);
var overlayingAnchorDomain = [0, 1];

Expand Down
2 changes: 1 addition & 1 deletion src/traces/treemap/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ module.exports = {
values: ['top', 'bottom'],
dflt: 'top',
editType: 'plot',
description: ['Determines on which side of the the treemap the', '`pathbar` should be presented.'].join(' ')
description: ['Determines on which side of the treemap the', '`pathbar` should be presented.'].join(' ')
},

edgeshape: {
Expand Down