Skip to content

Commit bd04f01

Browse files
author
John Soklaski
committed
Fixups for lint
1 parent ca0c561 commit bd04f01

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
@@ -42,7 +42,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, options) {
4242
data: options.data,
4343
showGrid: true
4444
});
45-
45+
4646
delete containerOut.tickpadding; //gl3d doesn't currently implement tickpadding property
4747

4848
coerce('gridcolor');

0 commit comments

Comments
 (0)