10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
var gc_rules_graph = {
dAllGraph: ${rules_graphsJS},
dRule: ${rules_actionsJS},
dURL: ${rules_graph_URL}
};
if (typeof(exports) !== 'undefined') {
exports.dAllGraph = gc_rules_graph.dAllGraph;
exports.dRule = gc_rules_graph.dRule;
exports.dURL = gc_rules_graph.dURL;
|
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
var gc_rules_graph = {
dAllGraph: ${rules_graphsJS},
dRule: ${rules_actionsJS},
dURL: ${rules_graph_URLJS}
};
if (typeof(exports) !== 'undefined') {
exports.dAllGraph = gc_rules_graph.dAllGraph;
exports.dRule = gc_rules_graph.dRule;
exports.dURL = gc_rules_graph.dURL;
|