UNPKG

clustergrammer

Version:

This is a clustergram implemented in D3.js. I started from the example http://bost.ocks.org/mike/miserables/ and added the following features

17 lines (12 loc) 338 B
module.exports = function toggle_play_button(params, show){ if (show === false){ d3.select(params.root+' .play_button') .transition().duration(500) .style('opacity', 0); } else { d3.select(params.root+' .play_button') .transition().duration(500) .style('opacity', 1); $.unblockUI(); } };