2011-02-21 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/visual_console_builder.editor.js: fixed the update the
	items, now don't change the position if the data haven't the position.
	
	Fixes: #3188069



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3950 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-02-21 14:24:24 +00:00
parent 0062998ec8
commit f9afd4893f
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2011-02-21 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/visual_console_builder.editor.js: fixed the update the
items, now don't change the position if the data haven't the position.
Fixes: #3188069
2011-02-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_db.php: added in function "get_group_agents" the

View File

@ -815,8 +815,10 @@ function updateDB(type, idElement , values, event) {
var left = values['absolute_left'];
}
parameter.push ({name: 'top', value: top});
parameter.push ({name: 'left', value: left});
if ((typeof(top) != 'undefined') && (typeof(left) != 'undefined')) {
parameter.push ({name: 'top', value: top});
parameter.push ({name: 'left', value: left});
}
jQuery.ajax({
url: "ajax.php",