summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlshprung <lshprung@yahoo.com>2022-04-24 17:36:56 -0700
committerlshprung <lshprung@yahoo.com>2022-04-24 17:36:56 -0700
commited3459e004474eac91b499bce26a5636e7bbdcdd (patch)
treec8f146c3e9bd07356c24fc28dbe44e176a257607
parentb5a5f16a2dbc33eac54ecffb6b41fe2a2161869d (diff)
Removed custom coloring
-rw-r--r--assignment_list.js13
1 files changed, 1 insertions, 12 deletions
diff --git a/assignment_list.js b/assignment_list.js
index 1c153fb..bc77408 100644
--- a/assignment_list.js
+++ b/assignment_list.js
@@ -21,13 +21,6 @@ function get_day(d){
return output;
}
-function day_of_year(date){
- //get milliseconds
- console.log(date);
- console.log(Math.floor(date.getTime() / 1000 / 60 / 60 / 24));
- return Math.round(date.getTime() / 1000 / 60 / 60 / 24);
-}
-
function hide_dialog(selector){
const obj = document.querySelector(selector);
if(obj) obj.innerHTML = "";
@@ -121,14 +114,10 @@ function draw_assignment(entry){
if(!highlight) highlight = "none";
let due_date_pieces;
- let current_date;
let due_date_object;
if(due_date){
due_date_pieces = due_date.split("-");
- current_date = new Date();
due_date_object = new Date(due_date_pieces[0], due_date_pieces[1]-1, due_date_pieces[2]);
- if(day_of_year(due_date_object) - day_of_year(current_date) <= 0 && color != "black" && color != "brown") color = "red";
- if((done == 0 && (day_of_year(due_date_object) - day_of_year(current_date) <= -1)) || (highlight == "orange" && (day_of_year(due_date_object) - day_of_year(current_date) <= 6))) highlight = "yellow";
}
if(highlight != "none" && color == "gray") color = "black";
if(done == 1){
@@ -165,7 +154,7 @@ function draw_assignment(entry){
assignment_html += due_date_object.getDate()
}
else assignment_html += due_date_alt;
- assignment_html += ": <span style='background-color: " + highlight + "'>";
+ assignment_html += ": ";
if(link) assignment_html += "<a href='" + link + "'>";
assignment_html += desc;
if(link) assignment_html += "</a>";