File size: 353 Bytes
9046370 | 1 2 3 4 5 6 7 8 9 10 11 12 | $(document).ready(function () {
$('#showSql').click(function (e) {
e.preventDefault();
$('.sqlQueries').toggle();
});
$('#upgradeCorePluginsForm').submit(function () {
$('input[type=submit]', this)
.prop('disabled', 'disabled')
.val($('#upgradeCorePluginsForm').data('updating'));
});
});
|