File tree 3 files changed +9
-6
lines changed 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,12 @@ exports.plot = function plotGeo(gd) {
49
49
// If geo is not instantiated, create one!
50
50
if ( geo === undefined ) {
51
51
geo = new Geo ( {
52
- id : geoId ,
53
- container : fullLayout . _geocontainer . node ( ) ,
54
- topojsonURL : gd . _context . topojsonURL
55
- } , fullLayout ) ;
52
+ id : geoId ,
53
+ container : fullLayout . _geocontainer . node ( ) ,
54
+ topojsonURL : gd . _context . topojsonURL
55
+ } ,
56
+ fullLayout
57
+ ) ;
56
58
57
59
fullLayout [ geoId ] . _geo = geo ;
58
60
}
Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ exports.plot = function plotGl3d(gd) {
53
53
id : sceneId ,
54
54
staticPlot : gd . _context . staticPlot ,
55
55
plotGlPixelRatio : gd . _context . plotGlPixelRatio
56
- } , fullLayout
56
+ } ,
57
+ fullLayout
57
58
) ;
58
59
59
60
fullLayout [ sceneId ] . _scene = scene ; // set ref to Scene instance
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ var showNoWebGlMsg = require('../../lib/show_no_webgl_msg');
22
22
var createCamera = require ( './camera' ) ;
23
23
var project = require ( './project' ) ;
24
24
var setConvert = require ( './set_convert' ) ;
25
- var createAxesOptions = require ( './layout/convert' ) ;
25
+ var createAxesOptions = require ( './layout/convert' ) ;
26
26
var createSpikeOptions = require ( './layout/spikes' ) ;
27
27
var computeTickMarks = require ( './layout/tick_marks' ) ;
28
28
You can’t perform that action at this time.
0 commit comments