From bc222c60e0973a3ebd2766ba0e0e8e8f33417178 Mon Sep 17 00:00:00 2001 From: yanas Date: Fri, 16 Sep 2016 00:21:41 -0500 Subject: [PATCH] Fixes dominant speaker and raised hand tooltips --- modules/UI/videolayout/SmallVideo.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/UI/videolayout/SmallVideo.js b/modules/UI/videolayout/SmallVideo.js index 0cb0f71b8..619d67fe1 100644 --- a/modules/UI/videolayout/SmallVideo.js +++ b/modules/UI/videolayout/SmallVideo.js @@ -433,7 +433,7 @@ SmallVideo.prototype.showDominantSpeakerIndicator = function (show) { indicatorSpan.innerHTML = ""; // adds a tooltip - UIUtil.setTooltip(indicatorSpan, "speaker", "left"); + UIUtil.setTooltip(indicatorSpan, "speaker", "top"); APP.translation.translateElement($(indicatorSpan)); $(indicatorSpan).css("visibility", show ? "visible" : "hidden"); @@ -457,7 +457,7 @@ SmallVideo.prototype.showRaisedHandIndicator = function (show) { = ""; // adds a tooltip - UIUtil.setTooltip(indicatorSpan, "raisedHand", "left"); + UIUtil.setTooltip(indicatorSpan, "raisedHand", "top"); APP.translation.translateElement($(indicatorSpan)); $(indicatorSpan).css("visibility", show ? "visible" : "hidden");