Skip to content

Commit

Permalink
Fix typo and change fontawesome icon
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Oct 13, 2021
1 parent 7ad0d9a commit 497bfa3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -104,7 +104,7 @@

this.replaceArrow = function(str) {
if (typeof(str) === 'string') {
return str.replace(/-->/g, '<i class="fa fa-long-arrow-right"></i>');
return str.replace(/-->/g, '<i class="fas fa-long-arrow-alt-right"></i>');
} else {
return str;
}
Expand Down Expand Up @@ -257,7 +257,7 @@
altnormalrow = !altnormalrow;
altfullrow = false;
if (x.subinteractions.length > 0 && x.type != 'page') {
detailstable.append("<tr><td class='correct th'></td><th class='question'>" + x.title + "</th><th class='answer'>" + yourAnswerTxt + "</th><th class='correctanswer'>" + correctAnswerTxt + "</th></tr>");
detailstable.append("<tr><th class='correct th'></th><th class='question'>" + x.title + "</th><th class='answer'>" + yourAnswerTxt + "</th><th class='correctanswer'>" + correctAnswerTxt + "</th></tr>");
var detailstablecolumns = ["", x_GetTrackingTextFromHTML(x.title, ""), yourAnswerTxt, correctAnswerTxt];
var detailstablerows = [];
altfullrow = false;
Expand Down

0 comments on commit 497bfa3

Please sign in to comment.