mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-24 07:44:46 +08:00
Fix hound and add emoji in title [SCI-7027]
This commit is contained in:
parent
4fb3f7ff3d
commit
231dd40602
1 changed files with 1 additions and 4 deletions
|
@ -42,10 +42,7 @@
|
|||
if (expireIn > 0) {
|
||||
timeString = newTimerStr(expireIn);
|
||||
document.title = timeString + ' ' + String.fromCodePoint(0x1F62A) + ' ' + originalTitle;
|
||||
$('.expiring').text(
|
||||
I18n.t('devise.sessions.expire_modal.session_end_in.header',
|
||||
{ time: timeString })
|
||||
);
|
||||
$('.expiring').text(I18n.t('devise.sessions.expire_modal.session_end_in.header', { time: timeString }));
|
||||
expireIn -= 1;
|
||||
if (!$('#session-expire').hasClass('in')) {
|
||||
$('#session-expire').modal().off('hide.bs.modal').on('hide.bs.modal', function() {
|
||||
|
|
Loading…
Reference in a new issue