diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2013-08-17 19:24:07 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2013-08-17 19:24:07 +0200 |
commit | 281c96082c00b9382d074ed72e03f22e236b6520 (patch) | |
tree | 6c0443b095e9284ef61734cf647c00cab4addaab /js/liststudy.js | |
parent | 8c24f8d84c338de8320596c5a9b8da72c2541080 (diff) | |
download | Bits-281c96082c00b9382d074ed72e03f22e236b6520.tar.gz Bits-281c96082c00b9382d074ed72e03f22e236b6520.zip |
Nothing...
Diffstat (limited to 'js/liststudy.js')
-rw-r--r-- | js/liststudy.js | 17 |
1 files changed, 12 insertions, 5 deletions
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 += '<tr><td>' + reviews_data[i].date + '</td><td style="background-color: ' + color + '">' + reviews_data[i].score + '/100</td></tr>'; |