2013-11-12 Sergio Martin <sergio.martin@artica.es>

* include/javascript/pandora.js: Fix ugly chars in the
	title of the many select options.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9060 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-11-12 12:21:22 +00:00
parent 84d271c0d2
commit 7353e4efc1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-11-12 Sergio Martin <sergio.martin@artica.es>
* include/javascript/pandora.js: Fix ugly chars in the
title of the many select options.
2013-11-12 Miguel de Dios <miguel.dedios@artica.es> 2013-11-12 Miguel de Dios <miguel.dedios@artica.es>
* general/header.php: fixed the action to click in the search * general/header.php: fixed the action to click in the search

View File

@ -265,7 +265,7 @@ function agent_changed_by_multiple_agents (event, id_agent, selected) {
.append ($('<option></option>') .append ($('<option></option>')
.html (s) .html (s)
.attr ("value", i) .attr ("value", i)
.attr("title", i)); .attr("title", s));
$('#module').fadeIn ('normal'); $('#module').fadeIn ('normal');
}); });