2013-04-09 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/visual_console_builder.editor.js: fixed a
	warning message in javascript for null var when the map is empty.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7949 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-04-09 13:29:13 +00:00
parent a74db9353a
commit fd32e50bbe
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-04-09 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/visual_console_builder.editor.js: fixed a
warning message in javascript for null var when the map is empty.
2013-04-09 Miguel de Dios <miguel.dedios@artica.es>
* godmode/extensions.php: removed the link to delete or disable the

View File

@ -1513,8 +1513,10 @@ function eventsItems(drag) {
//Check if exist or create the previous draggable
check_draggable = $(".item").data();
if (typeof(check_draggable.uiDraggable) != "undefined")
$(".item").draggable('destroy');
if (check_draggable) {
if (typeof(check_draggable.uiDraggable) != "undefined")
$(".item").draggable('destroy');
}
//$(".item").resizable(); //Disable but run in ff and in the waste (aka micro$oft IE) show ungly borders