Add titles to owner actions buttons

master
Daniel Berteaud 11 years ago
parent 51945c1c51
commit eb331ad0ad
  1. 11
      public/js/vroom.js

@ -40,7 +40,10 @@ var locale = {
s_IS_MUTING_s: '', s_IS_MUTING_s: '',
s_IS_SUSPENDING_YOU: '', s_IS_SUSPENDING_YOU: '',
s_IS_SUSPENDING_s: '', s_IS_SUSPENDING_s: '',
s_IS_KICKING_s: '' s_IS_KICKING_s: '',
MUTE_PEER: '',
SUSPEND_PEER: '',
KICK_PEER: ''
}; };
// Localize the strings we need // Localize the strings we need
@ -256,17 +259,17 @@ function initVroom(room) {
class: 'actionMute btn btn-default btn-sm', class: 'actionMute btn btn-default btn-sm',
id: 'actionMute_' + id, id: 'actionMute_' + id,
click: function() { mutePeer(id) }, click: function() { mutePeer(id) },
})) }).prop('title', locale.MUTE_PEER))
.append($('<button></button>', { .append($('<button></button>', {
class: 'actionPause btn btn-default btn-sm', class: 'actionPause btn btn-default btn-sm',
id: 'actionPause_' + id, id: 'actionPause_' + id,
click: function() { pausePeer(id) }, click: function() { pausePeer(id) },
})) }).prop('title', locale.SUSPEND_PEER))
.append($('<button></button>', { .append($('<button></button>', {
class: 'actionKick btn btn-default btn-sm', class: 'actionKick btn btn-default btn-sm',
id: 'actionKick_' + id, id: 'actionKick_' + id,
click: function() { kickPeer(id) }, click: function() { kickPeer(id) },
}))); }).prop('title', locale.KICK_PEER)));
$(div).hover( $(div).hover(
function(){ function(){
if (peers.local.role == 'owner'){ if (peers.local.role == 'owner'){

Loading…
Cancel
Save