Skip to content

Commit

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

$("#divCloseAbout").hide();
}
titleMeeting.innerHTML = `${lngObject.meetingAt} ${moment().format(dateFormat)}`;
setTimeout(function() {
titleMeeting.innerHTML = `${lngObject.meetingAt} ${moment().format(dateFormat)}`;
}, 1000);
}, 100);

if (isFirstRun) {
Expand Down
Loading

0 comments on commit da0bc60

Please sign in to comment.