Fix handling youtube player controls 32/134932/1
authorSuyeon Hwang <stom.hwang@samsung.com>
Tue, 20 Jun 2017 09:39:36 +0000 (18:39 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Tue, 20 Jun 2017 09:39:36 +0000 (18:39 +0900)
Change-Id: I3d195d28751a3328e907b82784a5d0e62ffd9382
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
js/vc-webview.js

index 8f1f997..e5ee7e9 100755 (executable)
@@ -726,9 +726,11 @@ function vc_remove_hints() {
 /**
  * vc_hide_hints function hides the hints from the screen. Hints elements still exist
  */
-function vc_hide_hints() {
+function vc_hide_hints(focusedExist) {
        /* Custom pre process to hide hints */
-       vc_custom_pre_hide_hints();
+       if (true != focusedExist) {
+               vc_custom_pre_hide_hints();
+       }
 
        for (var i = 0; i < vc_visible_hints.length; i++) {
                var hint = vc_visible_hints[i];
@@ -1012,7 +1014,7 @@ function vc_do_action(targetElem, numberTag, value) {
                if (vc_flag_conflict) {
                        vc_remove_highlight(numberTag.textContent.trim());
                }
-               vc_hide_hints();
+               vc_hide_hints(true);
        } else {
                position = elem.getClientRects()[0];
                effect.style.left = (position.left - 35) + 'px'