Skip to content

Commit aa2d6eb

Browse files
Removed .js from require
1 parent 6510415 commit aa2d6eb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/annotations/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var ARROWPATHS = require('./arrow_paths');
1212
var fontAttrs = require('../../plots/font_attributes');
1313
var cartesianConstants = require('../../plots/cartesian/constants');
1414
var templatedArray = require('../../plot_api/plot_template').templatedArray;
15-
var axisPlaceableObjs = require('../../constants/axis_placeable_objects.js');
15+
var axisPlaceableObjs = require('../../constants/axis_placeable_objects');
1616

1717

1818
module.exports = templatedArray('annotation', {

src/components/images/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
var cartesianConstants = require('../../plots/cartesian/constants');
1212
var templatedArray = require('../../plot_api/plot_template').templatedArray;
13-
var axisPlaceableObjs = require('../../constants/axis_placeable_objects.js');
13+
var axisPlaceableObjs = require('../../constants/axis_placeable_objects');
1414

1515

1616
module.exports = templatedArray('image', {

src/components/shapes/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var scatterLineAttrs = require('../../traces/scatter/attributes').line;
1313
var dash = require('../drawing/attributes').dash;
1414
var extendFlat = require('../../lib/extend').extendFlat;
1515
var templatedArray = require('../../plot_api/plot_template').templatedArray;
16-
var axisPlaceableObjs = require('../../constants/axis_placeable_objects.js');
16+
var axisPlaceableObjs = require('../../constants/axis_placeable_objects');
1717

1818
module.exports = templatedArray('shape', {
1919
visible: {

0 commit comments

Comments
 (0)