Merge "Fix handling youtube player controls" into tizen_4.0
[platform/core/uifw/vc-webview-js.git] / js / vc-webview.js
index 923b503..468eccd 100755 (executable)
@@ -128,6 +128,11 @@ vc_flag_conflict = false,
 vc_flag_hint_exist = false,
 
 /**
+ * vc_flag_make_tooltip is a flag variable. When creating tooltip is set, it is true. Otherwise, it is false.
+ */
+vc_flag_make_tooltip = true,
+
+/**
  * vc_text_indicators is an array that contains text indicator elements
  */
 vc_text_indicators = [],
@@ -309,6 +314,10 @@ function vc_is_visible(elem, scr, isTextLink) {
  */
 function vc_make_hint(elem, child) {
        // vc_print_log(elem);
+       if (false == vc_flag_make_tooltip) {
+               return;
+       }
+
        var rect;
 
        rect = child.getBoundingClientRect();
@@ -1181,8 +1190,6 @@ function vc_click(cmd, param) {
 
                return vc_search_text(param);
        }
-
-       return [-1, 0, 0];
 }
 
 /**
@@ -1419,6 +1426,19 @@ function vc_get_conflict_status() {
 }
 
 /**
+ * vc_set_make_tooltip function sets the vc_flag_make_tooltip.
+ *
+ * @param makeTooltip  If it is 1, then set vc_flag_make_tooltip as true. Otherwise false.
+ */
+function vc_set_make_tooltip(makeTooltip) {
+       if (1 == makeTooltip) {
+               vc_flag_make_tooltip = true;
+       } else {
+               vc_flag_make_tooltip = false;
+       }
+}
+
+/**
  * vc_init function initialize some elements and styles to use voice control.
  */
 function vc_init() {