From 281c96082c00b9382d074ed72e03f22e236b6520 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Sat, 17 Aug 2013 19:24:07 +0200 Subject: Nothing... --- js/liststudy.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'js') diff --git a/js/liststudy.js b/js/liststudy.js index ab6eede..f01f656 100644 --- a/js/liststudy.js +++ b/js/liststudy.js @@ -22,9 +22,12 @@ function process_items() { var d = batch_data.items[i]; item_idx[d[0]] = items.length; items.push( - {"info": d, - "win": 0, "fail": 0, "score": 0, "marker": ""} - ); + { + "info": d, + "win": 0, "fail": 0, + "score": 0, "marker": "", + } + ); } // Calculate total wins and losses @@ -118,10 +121,14 @@ function show_reviews_table() { var color = ''; if (reviews_data[i].score == 100) color = '#00aa00'; + else if (reviews_data[i].score >= 90) + color = '#22EE22'; else if (reviews_data[i].score >= 80) color = '#55FF55'; - else if (reviews_data[i].score >= 50) - color = '#FFFF00'; + else if (reviews_data[i].score >= 60) + color = '#eeee00'; + else if (reviews_data[i].score >= 40) + color = '#FFAA22'; else color = '#FF7777'; html += '' + reviews_data[i].date + '' + reviews_data[i].score + '/100'; -- cgit v1.2.3