We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f22c0fd commit df97e41Copy full SHA for df97e41
1 file changed
src/hub/hub.ts
@@ -119,7 +119,8 @@ let dragData: any = null;
119
// WINDOW UTILITIES
120
121
function setWindowTitle(name: string, status?: string) {
122
- let title = htmlEncode(name) + (status ? " (" + htmlEncode(status) + ")" : "") + " — AdvantageScope";
+ let title =
123
+ "\u2066" + htmlEncode(name) + "\u2069" + (status ? " (" + htmlEncode(status) + ")" : "") + " — AdvantageScope";
124
document.getElementsByTagName("title")[0].innerHTML = title;
125
document.getElementsByClassName("title-bar-text")[0].innerHTML = title;
126
}
0 commit comments