Module: nagvis Branch: master Commit: 271150fbb76bd875cfc4675f6b160d006c279558 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=271150fbb76bd875cfc4675f6b160d006c279558
Author: Lars Michelsen <[email protected]> Date: Wed May 5 22:02:43 2010 +0200 #279 Weathermap lines change the color to red when the load is over 85 --- share/frontend/nagvis-js/js/lines.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/share/frontend/nagvis-js/js/lines.js b/share/frontend/nagvis-js/js/lines.js index cec21a0..969b668 100644 --- a/share/frontend/nagvis-js/js/lines.js +++ b/share/frontend/nagvis-js/js/lines.js @@ -384,7 +384,7 @@ function getColorFill(percent) { return '#ffc000'; } else if (percent > 85 && percent <= 100) { // red - return '#ffc000'; + return '#ff0000'; } else { return '#000000'; } ------------------------------------------------------------------------------ _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
