mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 09:15:15 +02:00
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:
parent
e3564078e6
commit
db229cccf2
@ -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>
|
2013-09-27 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
* operation/events/events.php
|
* operation/events/events.php
|
||||||
|
@ -87,14 +87,23 @@ $(document).ready (function () {
|
|||||||
if ($('#license_error_msg_dialog').length) {
|
if ($('#license_error_msg_dialog').length) {
|
||||||
|
|
||||||
$( "#license_error_msg_dialog" ).dialog({
|
$( "#license_error_msg_dialog" ).dialog({
|
||||||
|
dialogClass: "no-close",
|
||||||
resizable: true,
|
resizable: true,
|
||||||
draggable: true,
|
draggable: true,
|
||||||
modal: true,
|
modal: true,
|
||||||
height: 350,
|
height: 350,
|
||||||
width: 600,
|
width: 610,
|
||||||
overlay: {
|
overlay: {
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
background: "black"
|
background: "black"
|
||||||
|
},
|
||||||
|
open: function() {
|
||||||
|
setTimeout(function(){
|
||||||
|
$("#spinner_ok").hide();
|
||||||
|
$("#ok_buttom").show();
|
||||||
|
},
|
||||||
|
10000
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user