Commit 9e2940c5 authored by Joshua Gould's avatar Joshua Gould

achilles color scheme

parent ae3b0f7b
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment