قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 23:17:46 +00:00

* 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.
12 خطوط
353 B
JavaScript
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'));
|
|
});
|
|
});
|