Skip to content

Commit

Permalink
Possibly fixed let_append_ticket_number()
Browse files Browse the repository at this point in the history
  • Loading branch information
ejunga committed Oct 24, 2024
1 parent 7a74442 commit 7aa984e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
try {
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const ticketID = urlParams.get('TicketID');
let ticketID = urlParams.get('TicketID');
ticketID = (ticketID)? ticketID : '';
let title = document.querySelector("title");
title.innerText = ticketID + ' ' + title.innerText;
} catch (error) {
Expand Down Expand Up @@ -1069,7 +1070,6 @@
parseTicket()
checkPath()
applyStudentFormatting()
left_append_ticket_number()

addEventListener("storage", (event) => {
//console.log("Storage event:",event)
Expand Down

0 comments on commit 7aa984e

Please sign in to comment.