updated arrow font

This commit is contained in:
Sriram Hariharan
2019-01-09 21:31:08 -06:00
parent 5258455db4
commit 60234caf9d

View File

@@ -42,7 +42,7 @@ function setCourseList() {
<h4 class='truncate' style='color:white;margin:5px; display:inline-block;font-size:large;'> <h4 class='truncate' style='color:white;margin:5px; display:inline-block;font-size:large;'>
<b>${department} ${course_nbr} <span style='font-size:medium'> with </span><span style='font-size:medium'>${profname} (${courses[i].unique})</span></b> <b>${department} ${course_nbr} <span style='font-size:medium'> with </span><span style='font-size:medium'>${profname} (${courses[i].unique})</span></b>
</h4> </h4>
<p id='arrow' style='float:right;font-size:small;display:inline-block;margin-top:10px;color:white;'>&#9658;</p> <p id='arrow' style='float:right;font-size:small;display:inline-block;margin-top:10px;color:white;font-family: sans-serif'>&#9658;</p>
</div> </div>
</div> </div>
<div id='moreInfo' style='display: none;'> <div id='moreInfo' style='display: none;'>
@@ -423,7 +423,7 @@ function getInfo(sem, unique) {
var object = $('<div/>').html(response).contents(); var object = $('<div/>').html(response).contents();
console.log(object.find('.error').text()); console.log(object.find('.error').text());
if (object.find('.error').text().trim() == 'No class was found for your input.') { if (object.find('.error').text().trim() == 'No class was found for your input.') {
alert(`Could not find a course with unique number: ${unique}`); window.confirm(`Could not find a course with unique number: ${unique}`);
} else { } else {
var c = getCourseObject(object, link); var c = getCourseObject(object, link);
console.log(c); console.log(c);
@@ -439,7 +439,7 @@ function getInfo(sem, unique) {
setCourseList(); setCourseList();
}); });
} else { } else {
alert("There Was An Error. Please check if you are logged into the UT Course Schedule.") window.confirm("There Was An Error. Please check if you are logged into Utexas.")
} }
} }
} }