tweak lobby tooltips

pull/1284/head
Thibault Duplessis 2015-12-05 12:16:37 +07:00
parent c239e07e42
commit c05efbfa45
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ function renderHook(ctrl, hook) {
return m('tr', {
key: hook.id,
title: hook.disabled ? '' : (
(hook.action === 'join') ? ctrl.trans('joinTheGame') + ' - ' + hook.perf.name : ctrl.trans('cancel')
(hook.action === 'join') ? ctrl.trans('joinTheGame') + ' | ' + hook.perf.name : ctrl.trans('cancel')
),
'data-id': hook.id,
class: 'hook ' + hook.action + (hook.disabled ? ' disabled' : '')