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:
parent
0062998ec8
commit
f9afd4893f
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue