Skip to content

Commit a29d4b9

Browse files
author
John Soklaski
committed
Fixups for lint
1 parent 96e15f3 commit a29d4b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/plots/cartesian/tick_value_defaults.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ module.exports = function handleTickValueDefaults(containerIn, containerOut, coe
2525
tickmodeDefault = 'linear';
2626
}
2727
var tickmode = coerce('tickmode', tickmodeDefault);
28-
28+
2929
if(tickmode === 'auto') {
3030
var nticks = coerce('nticks');
31-
31+
3232
//Only use tickpadding if tickmode is 'auto' and the user doesn't specify nticks
3333
if(nticks === layoutAttributes.nticks.dflt) {
3434
coerce('tickpadding');

src/plots/gl3d/layout/axis_defaults.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, options) {
4848
showGrid: true,
4949
bgColor: options.bgColor
5050
});
51-
51+
5252
delete containerOut.tickpadding; //gl3d doesn't currently implement tickpadding property
5353

5454
coerce('gridcolor', colorMix(containerOut.color, options.bgColor, gridLightness).toRgbString());

0 commit comments

Comments
 (0)