2013-10-16 Miguel de Dios <miguel.dedios@artica.es>

* extensions/update_manager/main.php: fixed the javascript bugs
	about the new version of jquery.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8928 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-10-16 14:59:15 +00:00
parent 1cbf6978da
commit 0dbace20bd
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2013-10-16 Miguel de Dios <miguel.dedios@artica.es>
* extensions/update_manager/main.php: fixed the javascript bugs
about the new version of jquery.
2013-10-16 Miguel de Dios <miguel.dedios@artica.es>
* include/api.php: checking the update manager, sorry.

View File

@ -208,8 +208,7 @@ function main_view_enterprise($settings, $user_key) {
overlay: {
opacity: 0.5,
background: "black"
},
bgiframe: jQuery.browser.msie
}
});
$("#dialog").show();
}
@ -230,8 +229,8 @@ function main_view_enterprise($settings, $user_key) {
$("#dialog_description").html(data['details_text']);
if (data['enable_buttons']) {
$("input[name='details_online']").attr('disabled', '');
$("input[name='update_online']").attr('disabled', '');
$("input[name='details_online']").removeAttr("disabled");
$("input[name='update_online']").removeAttr("disabled");
}
}
});