1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-28 02:10:46 +02:00

Fixes "Updates to be Installed" functionality in Plugin Manager.

This commit is contained in:
Cameron
2020-12-31 10:24:13 -08:00
parent 8871cdd097
commit 60027348b4
2 changed files with 17 additions and 5 deletions

View File

@@ -174,6 +174,15 @@ var e107 = e107 || {'settings': {}, 'behaviors': {}};
$(document).ready(function()
{
$('a.e-spinner').on('click', function() {
var orig = $(this).text();
var spin = "<i class='fa fa-spin fa-spinner fa-fw'></i>";
$(this).html(orig + spin);
});
$('#e-modal-submit').click(function () {
$('#e-modal-iframe').contents().find('#etrigger-submit').trigger('click');