Skip to content

Commit

Permalink
Translations issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
FANMixco authored Apr 25, 2019
1 parent da0bc60 commit 5cbba74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions js/timer.js
Original file line number Diff line number Diff line change
Expand Up @@ -954,9 +954,13 @@ setTimeout(function() {

$("#divCloseAbout").hide();
}
setTimeout(function() {
titleMeeting.innerHTML = `${lngObject.meetingAt} ${moment().format(dateFormat)}`;
}, 1000);
let exit = 0;
while (lngObject.meetingAt === undefined && exit < 5) {
setTimeout(function() {
titleMeeting.innerHTML = `${lngObject.meetingAt} ${moment().format(dateFormat)}`;
}, 1000);
exit++;
}
}, 100);

if (isFirstRun) {
Expand Down
Loading

0 comments on commit 5cbba74

Please sign in to comment.