diff --git a/src/ui/heat_map.js b/src/ui/heat_map.js index 0c01e4942cd24ced91cfa318c41e5f82b7371187..1ab00a67404a985613372b9d7510ad442cff67eb 100644 --- a/src/ui/heat_map.js +++ b/src/ui/heat_map.js @@ -225,6 +225,7 @@ morpheus.HeatMap = function (options) { } else { this.$el = $(options.el); } + this.$el.addClass('morpheus'); if (!options.landingPage) { options.landingPage = new morpheus.LandingPage(); options.landingPage.$el.prependTo(this.$el); @@ -765,6 +766,23 @@ morpheus.HeatMap.prototype = { color: 'red' }] }; + } else if (options.filename.toLowerCase().indexOf('achilles') !== -1) { + colorScheme = { + type: 'fixed', + map: [{ + value: -3, + color: 'blue' + }, { + value: -1, + color: 'white' + }, { + value: 1, + color: 'white' + }, { + value: 3, + color: 'red' + }] + }; } if (colorScheme && options.filename) {