- Implemented StreamInterface, UploadedFileInterface, and UriInterface as per PSR standards. - Added getallheaders function to retrieve HTTP headers in a compatible manner. - Included LICENSE files for ralouphie/getallheaders and symfony/deprecation-contracts. - Introduced function for triggering deprecation notices in Symfony.
10 lines
363 B
JavaScript
10 lines
363 B
JavaScript
jQuery(document).ready(function($) {
|
|
$('tr.active[data-plugin*="autopoly-ai-translation-for-polylang-pro"]').each(function() {
|
|
var $currentRow = $(this);
|
|
var $nextUpdateRow = $currentRow.nextAll('tr.plugin-update-tr.active.atfpp-pro').first();
|
|
|
|
if ($nextUpdateRow.length > 0) {
|
|
$currentRow.addClass('update');
|
|
}
|
|
});
|
|
}); |