Merge pull request #834 from jitsi/disable-kick-until-fixed-hack

Temprorary disable kicks hack.
This commit is contained in:
bgrozev 2016-09-02 11:44:15 -05:00 committed by GitHub
commit e3f599fbc0
1 changed files with 5 additions and 1 deletions

View File

@ -129,7 +129,11 @@ RemoteVideo.prototype._generatePopupContent = function () {
APP.translation.translateString("videothumbnail.kick") +
"</div>";
ejectLinkItem.className = 'ejectlink';
/**
* TO FIX: Disabled kicks until they're fixed.
* @type {string}
*/
ejectLinkItem.className = 'ejectlink disabled';
ejectLinkItem.innerHTML = ejectIndicator + ' ' + ejectText;
ejectLinkItem.id = "ejectlink_" + this.id;