2013-01-31 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/visual_console_builder.editor.js: fixed a
	fucking infinite loop thanks javascript for hidden threads.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7555 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-01-31 17:40:56 +00:00
parent 79a5c23816
commit aa49c338f4
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2013-01-31 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/visual_console_builder.editor.js: fixed a
fucking infinite loop thanks javascript for hidden threads.
2013-01-31 Miguel de Dios <miguel.dedios@artica.es>
* include/styles/jquery-ui-1.10.0.custom.css,
@ -5,7 +10,7 @@
include/javascript/jquery.jquery-ui-1.10.0.custom.js,
include/javascript/jquery-1.9.0.js: added the last version of
jquery and jqueryUI.
* godmode/reporting/visual_console_builder.editor.js,
include/ajax/events.php, include/functions_events.php,
include/functions_reporting.php,

View File

@ -1521,7 +1521,7 @@ function eventsItems(drag) {
$('.item').bind('click', function(event, ui) {
event.stopPropagation();
if (!is_opened_palette) {
divParent = $(event.target).parent();
var divParent = $(event.target);
while (!$(divParent).hasClass("item")) {
divParent = $(divParent).parent();
}
@ -1976,7 +1976,7 @@ function showGrid() {
eventsItems([SIZE_GRID, SIZE_GRID]);
}
else{
else {
$("#background_grid").css('display', 'none');
$("#background_img").css('opacity', '1');
$("#background_img").css('filter', 'alpha(opacity=100)');