");
//go through all the rows in the list
@@ -87,7 +87,6 @@ $(document).ready( function() {
/* Update the course list to show if the row contains a course that conflicts with the saved course is one of the saved courses */
function update(){
chrome.storage.sync.get('courseConflictHighlight', function(data) {
- console.log(data.courseConflictHighlight);
$('table').find('tr').each(function(){
if(!($(this).find('td').hasClass("course_header")) && $(this).has('th').length == 0){
var thisForm = this;
@@ -97,7 +96,7 @@ function update(){
$(thisForm).find('td').each(function(){
$(this).css('color','#F44336');
$(this).css('text-decoration','line-through');
- $(this).css('font-weight','normal');
+ $(this).css('font-weight','normal');
});
}
else {
diff --git a/options.html b/options.html
index 6ce8b32a..ad10a216 100644
--- a/options.html
+++ b/options.html
@@ -9,6 +9,8 @@