File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ var baseAttributes = require('../plots/attributes');
16
16
var baseLayoutAttributes = require ( '../plots/layout_attributes' ) ;
17
17
var frameAttributes = require ( '../plots/frame_attributes' ) ;
18
18
var animationAttributes = require ( '../plots/animation_attributes' ) ;
19
+ var plotConfig = require ( './plot_config' ) ;
19
20
20
21
// polar attributes are not part of the Registry yet
21
22
var polarAreaAttrs = require ( '../plots/polar/area_attributes' ) ;
@@ -43,7 +44,7 @@ exports.UNDERSCORE_ATTRS = UNDERSCORE_ATTRS;
43
44
* - transforms
44
45
* - frames
45
46
* - animations
46
- * - config (coming soon ...)
47
+ * - config
47
48
*/
48
49
exports . get = function ( ) {
49
50
var traces = { } ;
@@ -70,7 +71,9 @@ exports.get = function() {
70
71
transforms : transforms ,
71
72
72
73
frames : formatAttributes ( frameAttributes ) ,
73
- animation : formatAttributes ( animationAttributes )
74
+ animation : formatAttributes ( animationAttributes ) ,
75
+
76
+ config : formatAttributes ( plotConfig )
74
77
} ;
75
78
} ;
76
79
You can’t perform that action at this time.
0 commit comments