summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-07-22 12:35:23 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-07-22 12:35:23 -0400
commit6549fec2cfcdaf51f67306c46e2845421b6daea3 (patch)
tree151d60362b9ae6626c159c47ee9b4abce2e42b27
parent7cff61d23bf36e4dc5c071f421720d5319915686 (diff)
web app: fixed bug - make default annotation text blank
-rw-r--r--web-app/static/chart.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-app/static/chart.js b/web-app/static/chart.js
index a98be75..23753ba 100644
--- a/web-app/static/chart.js
+++ b/web-app/static/chart.js
@@ -46,7 +46,7 @@ function create_chart(div_name, branch, device, distro, version, max_results, f)
},
toolTip: {
content: function(e) {
- var annotation_text;
+ var annotation_text = "";
// check for matching job in global annotations data
if(e.entries[0].dataPoint.label in test_annotations_data) {