diff --git a/modules/UI/util/JitsiPopover.js b/modules/UI/util/JitsiPopover.js
index f99d57747..92267c11e 100644
--- a/modules/UI/util/JitsiPopover.js
+++ b/modules/UI/util/JitsiPopover.js
@@ -29,8 +29,8 @@ var JitsiPopover = (function () {
this.element = element;
this.template = '
';
+ '' +
+ '';
var self = this;
this.element.on("mouseenter", function () {
self.elementIsHovered = true;
diff --git a/modules/UI/videolayout/ConnectionIndicator.js b/modules/UI/videolayout/ConnectionIndicator.js
index f7056f9d1..765cd17d9 100644
--- a/modules/UI/videolayout/ConnectionIndicator.js
+++ b/modules/UI/videolayout/ConnectionIndicator.js
@@ -80,10 +80,10 @@ ConnectionIndicator.prototype.generateText = function () {
packetLoss = "N/A";
} else {
- packetLoss = "↓" +
+ packetLoss = "↓" +
(this.packetLoss.download !== null ?
this.packetLoss.download : "N/A") +
- "% ↑" +
+ "% ↑" +
(this.packetLoss.upload !== null? this.packetLoss.upload : "N/A") +
"%";
}
@@ -97,29 +97,29 @@ ConnectionIndicator.prototype.generateText = function () {
var result = "" +
"" +
- "" +
+ " | " +
translate("connectionindicator.bitrate") + " | " +
- "↓" +
- downloadBitrate + " ↑" +
+ " | ↓" +
+ downloadBitrate + " ↑" +
uploadBitrate + " | " +
"
" +
- "" +
+ " | " +
translate("connectionindicator.packetloss") + " | " +
"" + packetLoss + " | " +
"
" +
- "" +
+ " | " +
translate("connectionindicator.resolution") + " | " +
"" + resolutionStr + " |
";
if(this.videoContainer.videoSpanId == "localVideoContainer") {
- result += "" +
translate("connectionindicator." + (this.showMoreValue ? "less" : "more")) +
- "
";
+ "";
}
if (this.showMoreValue) {
@@ -138,7 +138,7 @@ ConnectionIndicator.prototype.generateText = function () {
if (!this.transport || this.transport.length === 0) {
transport = "" +
- "" +
translate("connectionindicator.address") + " | " +
" N/A |
";
@@ -171,7 +171,7 @@ ConnectionIndicator.prototype.generateText = function () {
var local_address_key = "connectionindicator.localaddress";
var remote_address_key = "connectionindicator.remoteaddress";
var localTransport =
- "" +
translate(local_address_key, {count: data.localIP.length}) +
@@ -179,7 +179,7 @@ ConnectionIndicator.prototype.generateText = function () {
ConnectionIndicator.getStringFromArray(data.localIP) +
" |
";
transport =
- "" +
translate(remote_address_key,
@@ -193,14 +193,14 @@ ConnectionIndicator.prototype.generateText = function () {
transport += "" +
"" +
- "" +
translate(key_remote, {count: this.transport.length}) +
" | ";
localTransport += " | " +
"" +
- "" +
translate(key_local, {count: this.transport.length}) +
@@ -213,7 +213,7 @@ ConnectionIndicator.prototype.generateText = function () {
transport += " | ";
transport += localTransport + " |
";
transport +="" +
- "" +
+ " | " +
translate("connectionindicator.transport") + " | " +
"" + this.transport[0].type + " |
";
@@ -222,17 +222,17 @@ ConnectionIndicator.prototype.generateText = function () {
result += "" +
"" +
"" +
- "" +
+ "" +
translate("connectionindicator.bandwidth") + "" +
" | " +
- "↓" +
+ "↓" +
downloadBandwidth +
- " ↑" +
+ " ↑" +
uploadBandwidth + " |
";
result += transport + "
";
}
-
+
return result;
};