Merge pull request #1105 from jitsi/fix_frozen_msg

fix(LargeVideoManager): frozen displayname in a msg
This commit is contained in:
Дамян Минков 2016-11-02 11:58:58 -05:00 committed by GitHub
commit 317f0e736c
1 changed files with 4 additions and 5 deletions

View File

@ -382,7 +382,8 @@ export default class LargeVideoManager {
$('#remoteConnectionMessage')
.attr("data-i18n", msgKey)
.attr("data-i18n-options", JSON.stringify(msgOptions));
APP.translation.translateElement($('#remoteConnectionMessage'));
APP.translation.translateElement(
$('#remoteConnectionMessage'), msgOptions);
}
this.videoContainer.positionRemoteConnectionMessage();
@ -394,14 +395,12 @@ export default class LargeVideoManager {
*
* @param {string} msgKey the translation key which will be used to get
* the message text to be displayed on the large video.
* @param {object} msgOptions translation options object
*
* @private
*/
_setLocalConnectionMessage (msgKey, msgOptions) {
_setLocalConnectionMessage (msgKey) {
$('#localConnectionMessage')
.attr("data-i18n", msgKey)
.attr("data-i18n-options", JSON.stringify(msgOptions));
.attr("data-i18n", msgKey);
APP.translation.translateElement($('#localConnectionMessage'));
}