File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ var Lib = require('../lib');
14
14
15
15
var baseAttributes = require ( '../plots/attributes' ) ;
16
16
var baseLayoutAttributes = require ( '../plots/layout_attributes' ) ;
17
+ var frameAttributes = require ( '../plots/frame_attributes' ) ;
18
+ var animationAttributes = require ( '../plots/animation_attributes' ) ;
17
19
18
20
// polar attributes are not part of the Registry yet
19
21
var polarAreaAttrs = require ( '../plots/polar/area_attributes' ) ;
@@ -39,6 +41,9 @@ exports.UNDERSCORE_ATTRS = UNDERSCORE_ATTRS;
39
41
* - traces
40
42
* - layout
41
43
* - transforms
44
+ * - frames
45
+ * - animations
46
+ * - config (coming soon ...)
42
47
*/
43
48
exports . get = function ( ) {
44
49
var traces = { } ;
@@ -64,6 +69,10 @@ exports.get = function() {
64
69
65
70
transforms : transforms ,
66
71
72
+ frames : formatAttributes ( frameAttributes ) ,
73
+ animation : formatAttributes ( animationAttributes )
74
+ } ;
75
+ } ;
67
76
68
77
/**
69
78
* Crawl the attribute tree, recursively calling a callback function
You can’t perform that action at this time.
0 commit comments