From a67f4bc3d852a3f93b1d933658c6157444874cea Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Mon, 10 Sep 2012 12:54:02 +0000 Subject: [PATCH] 2012-09-10 Juan Manuel Ramon * include/javascript/pandora.js: Fix over agent_module_autocomplete function due to problems with Chrome. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6942 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/javascript/pandora.js | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 8db8288222..52a281f3f4 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-09-10 Juan Manuel Ramon + + * include/javascript/pandora.js: Fix over agent_module_autocomplete + function due to problems with Chrome. + 2012-09-10 Juan Manuel Ramon * include/functions_reporting.php diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index d25ed8acc1..95d8f7ad84 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -442,11 +442,15 @@ function agent_changed_by_multiple_agents_id (event, id_agent, selected) { * @param id_agent_id id of the hidden field to store the agent id * @param id_agent_module_selector id of the selector for the modules of the agent. */ -function agent_module_autocomplete (id_agent_name, id_agent_id, id_agent_module_selector, id_server_name, noneValue, homedir = '.') { +function agent_module_autocomplete (id_agent_name, id_agent_id, id_agent_module_selector, id_server_name, noneValue, homedir) { //Check exist the field with id in the var id_agent_name. if ($(id_agent_name).length == 0) return; + homedir_path = ''; + if (homedir != undefined) + homedir_path = '.'; + $(id_agent_name).autocomplete({ minLength: 2, source: function( request, response ) {