Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
remdex committed Sep 12, 2024
1 parent 63abcc9 commit 0294c12
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lhc_web/design/defaulttheme/js/widgetv2/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lhc_web/design/defaulttheme/js/widgetv2/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lhc_web/design/defaulttheme/widget/wrapper/dist/index.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lhc_web/design/defaulttheme/widget/wrapper/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@
clearInterval(attributesWidget.blinkInterval);
if (data.status == false) {
attributesWidget.blinkInterval = setInterval(() => {
if (Math.round(new Date().getTime() / 1000) % 2) {
if (Math.round(new Date().getTime() / 1000) % 2 && attributesWidget.titleChanged === false) {
attributesWidget.originalTitle = document.title;
document.title = '💬 ' + document.title;
attributesWidget.titleChanged = true;
Expand Down

0 comments on commit 0294c12

Please sign in to comment.