X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=js%2Fvc-webview.js;h=468eccd1c2642eebf3b6d484b03e41e9380ddc57;hb=17b561cc77ae4e554dc9858e1c622bf621b6a112;hp=8f1f9973411f5c44ceea23ac24cf564369403e7d;hpb=309faa36c1df2cbcafde31606ba3928c135c650b;p=platform%2Fcore%2Fuifw%2Fvc-webview-js.git diff --git a/js/vc-webview.js b/js/vc-webview.js index 8f1f997..468eccd 100755 --- a/js/vc-webview.js +++ b/js/vc-webview.js @@ -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' @@ -1663,4 +1665,4 @@ function vc_init() { }, false); } -vc_init(); \ No newline at end of file +vc_init();