Bläddra i källkod

Fixes dominant speaker and raised hand tooltips

master
yanas 8 år sedan
förälder
incheckning
bc222c60e0
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2
    2
      modules/UI/videolayout/SmallVideo.js

+ 2
- 2
modules/UI/videolayout/SmallVideo.js Visa fil

@@ -433,7 +433,7 @@ SmallVideo.prototype.showDominantSpeakerIndicator = function (show) {
433 433
     indicatorSpan.innerHTML
434 434
         = "<i id='indicatoricon' class='fa fa-bullhorn'></i>";
435 435
     // adds a tooltip
436
-    UIUtil.setTooltip(indicatorSpan, "speaker", "left");
436
+    UIUtil.setTooltip(indicatorSpan, "speaker", "top");
437 437
     APP.translation.translateElement($(indicatorSpan));
438 438
 
439 439
     $(indicatorSpan).css("visibility", show ? "visible" : "hidden");
@@ -457,7 +457,7 @@ SmallVideo.prototype.showRaisedHandIndicator = function (show) {
457 457
         = "<i id='indicatoricon' class='icon-raised-hand'></i>";
458 458
 
459 459
     // adds a tooltip
460
-    UIUtil.setTooltip(indicatorSpan, "raisedHand", "left");
460
+    UIUtil.setTooltip(indicatorSpan, "raisedHand", "top");
461 461
     APP.translation.translateElement($(indicatorSpan));
462 462
 
463 463
     $(indicatorSpan).css("visibility", show ? "visible" : "hidden");

Laddar…
Avbryt
Spara