Fix for issue
authorhyun lee <hyunn.lee@samsung.com>
Thu, 11 Jul 2013 06:06:03 +0000 (15:06 +0900)
committerhyun lee <hyunn.lee@samsung.com>
Thu, 11 Jul 2013 06:06:03 +0000 (15:06 +0900)
Change-Id: I6da85cae659ecfeffc1eeb3a74a1a3822bdeccfd
Signed-off-by: hyun lee <hyunn.lee@samsung.com>
src/controls/FWebCtrl_EflWebkit.cpp
src/controls/FWebCtrl_WebImpl.cpp

index aa56acf..014bd33 100755 (executable)
@@ -157,6 +157,7 @@ _EflWebkit::SetWebConfiguration(void) const
        ewk_context_cache_model_set(pContext, EWK_CACHE_MODEL_PRIMARY_WEBBROWSER);
 
        ewk_settings_text_selection_enabled_set(pSettings, EINA_FALSE);
+       ewk_settings_uses_keypad_without_user_action_set(pSettings, EINA_FALSE);
 
        ewk_context_additional_plugin_path_set(pContext, PLUGIN_DIRECTORY_PATH);
 
index e541ffd..59682ff 100755 (executable)
@@ -1299,13 +1299,6 @@ OnLoadingCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
 
 
 void
-OnLoadingCommitted(void* pUserData, Evas_Object* pView, void* pEventInfo)
-{
-       evas_object_focus_set(pView, EINA_FALSE);
-}
-
-
-void
 OnFaviconReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
 {
        _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
@@ -3642,7 +3635,6 @@ _WebImpl::SetEventListenerCallback(void) const
                evas_object_smart_callback_add(pWebNativeNode, "load,stop", OnLoadingCanceled, this);
                evas_object_smart_callback_add(pWebNativeNode, "load,error", OnLoadingErrorOccurred, this);
                evas_object_smart_callback_add(pWebNativeNode, "title,changed", OnPageTitleReceived, this);
-               evas_object_smart_callback_add(pWebNativeNode, "load,committed", OnLoadingCommitted, this);
 
                evas_object_smart_callback_add(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest, this);