8 lines
No EOL
246 B
JavaScript
8 lines
No EOL
246 B
JavaScript
$(document).ready(function () {
|
|
$('#showSql').click(function () {
|
|
$('#sqlQueries').toggle();
|
|
});
|
|
$('#upgradeCorePluginsForm').submit(function () {
|
|
$('input[type=submit]', this).prop('disabled', 'disabled');
|
|
});
|
|
}); |