From db229cccf23227d728a4cf4f8b9847c4004e2487 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Fri, 27 Sep 2013 10:58:10 +0000 Subject: [PATCH] 2013-09-27 Miguel de Dios * include/javascript/jquery.pandora.js: the button to close in the dialog information for outdate license is not, and the ok button is hidden for a few seconds. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8819 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/include/javascript/jquery.pandora.js | 11 ++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 04f5f62896..1e2a32a3dd 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-09-27 Miguel de Dios + + * include/javascript/jquery.pandora.js: the button to close in the + dialog information for outdate license is not, and the ok button + is hidden for a few seconds. + 2013-09-27 Sergio Martin * operation/events/events.php diff --git a/pandora_console/include/javascript/jquery.pandora.js b/pandora_console/include/javascript/jquery.pandora.js index 12507a4905..fd1d45adac 100644 --- a/pandora_console/include/javascript/jquery.pandora.js +++ b/pandora_console/include/javascript/jquery.pandora.js @@ -87,14 +87,23 @@ $(document).ready (function () { if ($('#license_error_msg_dialog').length) { $( "#license_error_msg_dialog" ).dialog({ + dialogClass: "no-close", resizable: true, draggable: true, modal: true, height: 350, - width: 600, + width: 610, overlay: { opacity: 0.5, background: "black" + }, + open: function() { + setTimeout(function(){ + $("#spinner_ok").hide(); + $("#ok_buttom").show(); + }, + 10000 + ); } });