Skip to content

Commit

Permalink
fixup! fixup! Notify disconnection
Browse files Browse the repository at this point in the history
  • Loading branch information
tamuratak committed Oct 15, 2024
1 parent 463bc66 commit e15eec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viewer/components/extensionconnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ export class ExtensionConnection {

private makeDoms() {
this.disconnectedNotificationDom.id = 'notify-disconnected'
this.disconnectedNotificationDom.textContent = 'Disconnected from LaTeX Toybox'
this.disconnectedNotificationDom.textContent = 'Disconnected from LaTeX Toybox. Trying to reconnect...'
this.disconnectedNotificationDom.classList.add('hide')
document.body.appendChild(this.disconnectedNotificationDom)
this.reconnectedNotificationDom.id = 'notify-reconnected'
this.reconnectedNotificationDom.textContent = 'Reconnected to LaTeX Toybox'
this.reconnectedNotificationDom.textContent = 'Reconnected to LaTeX Toybox. Happy TeXing!'
this.reconnectedNotificationDom.classList.add('hide')
document.body.appendChild(this.reconnectedNotificationDom)
}
Expand Down

0 comments on commit e15eec7

Please sign in to comment.