File tree 5 files changed +9
-7
lines changed
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
var plotButtons = require ( './buttons' ) ;
2
2
3
- var figDir = '../../test/image/baseline /geo_' ;
3
+ var figDir = '../../test/image/baselines /geo_' ;
4
4
5
5
var plots = { } ;
6
6
Original file line number Diff line number Diff line change @@ -2577,7 +2577,7 @@ function makePlotFramework(gd) {
2577
2577
/*
2578
2578
* TODO - find a better place for 3D to initialize axes
2579
2579
*/
2580
- if ( fullLayout . _hasGL3D ) Plotly . Gl3dAxes . initAxes ( gd ) ;
2580
+ if ( fullLayout . _hasGL3D ) Plotly . Gl3dLayout . initAxes ( gd ) ;
2581
2581
2582
2582
// Plot container
2583
2583
fullLayout . _container = gd3 . selectAll ( '.plot-container' ) . data ( [ 0 ] ) ;
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ var plotSchema = {
22
22
} ;
23
23
24
24
// FIXME polar attribute are not part of Plotly yet
25
- var polarAreaAttrs = require ( '../plots/polar/attributes/area ' ) ,
26
- polarAxisAttrs = require ( '../plots/polar/attributes/polaraxes ' ) ;
25
+ var polarAreaAttrs = require ( '../plots/polar/area_attributes ' ) ,
26
+ polarAxisAttrs = require ( '../plots/polar/axis_attributes ' ) ;
27
27
28
28
var PlotSchema = module . exports = { } ;
29
29
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
- /*
3
+ /**
4
4
* This will be transfered over to gd and overridden by
5
5
* config args to Plotly.plot.
6
6
*
Original file line number Diff line number Diff line change @@ -181,11 +181,13 @@ module.exports = {
181
181
_composedModules : {
182
182
'*' : 'Fx'
183
183
} ,
184
+
185
+ // TODO merge with moduleLayoutDefaults in plots.js
184
186
_nestedModules : {
185
187
'xaxis' : 'Axes' ,
186
188
'yaxis' : 'Axes' ,
187
- 'scene' : 'Gl3dLayout' , // TODO should be Scene
188
- 'geo' : 'Geo ' ,
189
+ 'scene' : 'Gl3dLayout' ,
190
+ 'geo' : 'GeoLayout ' ,
189
191
'legend' : 'Legend' ,
190
192
'annotations' : 'Annotations' ,
191
193
'shapes' : 'Shapes'
You can’t perform that action at this time.
0 commit comments