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

* 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
This commit is contained in:
mdtrooper 2013-09-27 10:58:10 +00:00
parent 4dc7e90a88
commit c379ef77c0
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-09-27 Miguel de Dios <miguel.dedios@artica.es>
* 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 <sergio.martin@artica.es>
* operation/events/events.php

View File

@ -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
);
}
});