Fix post valifity inverval

This commit is contained in:
2021-06-14 23:36:20 +02:00
parent 81f070204c
commit ca8a9ece18
2 changed files with 4 additions and 4 deletions

View File

@@ -586,7 +586,7 @@ function initSpotMessages(aoMessages, aoTracks) {
//Tooltip
$Tooltip = $('<div>', {'class':'info-window'})
.append($('<h1>')
.addIcon('fa-message fa-lg push')
.addIcon('fa-message fa-lg', true)
.append($('<span>').text('Message '+oSpot.lang('counter', oMsg.displayed_id)))
.append($('<span>', {'class':'message-type'}).text('('+oMsg.type+')'))
)
@@ -601,7 +601,7 @@ function initSpotMessages(aoMessages, aoTracks) {
//Tooltip: Time Zone
if(oMsg.formatted_time_local != oMsg.formatted_time) {
$Tooltip.append($('<p>', {'class':'timezone'})
.addIcon('fa-timezone fa-fw fa-lg')
.addIcon('fa-timezone fa-fw fa-lg', true)
.append(oSpot.lang('local_time', oMsg.formatted_time_local)));
}