1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 23:17:46 +00:00
Files
matomo/plugins/CoreUpdater/javascripts/updateLayout.js
diosmosis c67317737a Include non-sql migrations in update dry run output. (#14003)
* Include non-sql migrations in update dry run output.

* More translation updates.

* Make check for by domain Matomo more robust.

* Show migrations in separate boxes based on whether they are SQL or console commands.

* Update two screenshots and fix test.
2019-02-10 15:12:20 -08:00

12 خطوط
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'));
});
});