Commit a856e584 by Muhammad Shoaib Committed by Chris Dodge

add comments.

parent bb8ca4be
...@@ -40,9 +40,15 @@ ...@@ -40,9 +40,15 @@
return ""; return "";
} }
else if (totalSeconds <= this.get('low_threshold_sec') && totalSeconds > this.get('critically_low_threshold_sec')) { else if (totalSeconds <= this.get('low_threshold_sec') && totalSeconds > this.get('critically_low_threshold_sec')) {
// returns the class name that has some css properties
// and it displays the user with the waring message if
// total seconds is less than the low_threshold value.
return "low-time warning"; return "low-time warning";
} }
else { else {
// returns the class name that has some css properties
// and it displays the user with the critical message if
// total seconds is less than the critically_low_threshold_sec value.
return "low-time critical"; return "low-time critical";
} }
} }
......
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