We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42b0271 commit 47c9f1bCopy full SHA for 47c9f1b
inst/htmljs/animint.js
@@ -1085,16 +1085,17 @@ var animint = function (to_select, json_file) {
1085
1086
var alpha = 1, alpha_off = 0.5;
1087
var get_alpha;
1088
+ var get_alpha_off = function (d) {
1089
+ return alpha_off;
1090
+ };
1091
if(aes.hasOwnProperty("alpha")){
1092
get_alpha = get_attr("alpha");
1093
+ get_alpha_off = get_attr("alpha");
1094
} else {
1095
get_alpha = function(d){
1096
return alpha;
1097
};
1098
}
- var get_alpha_off = function (d) {
- return alpha_off;
- };
1099
1100
var colour = "black", colour_off;
1101
var get_colour;
0 commit comments