questlab/www/analytics/plugins/CoreUpdater/javascripts/updateLayout.js
2016-04-10 18:55:57 +02:00

11 lines
353 B
JavaScript

$(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'));
});
});