Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.page.media.js
Ðазад
/*! * Add magnify links to thumbs and resize broken media spans, where needed */ ( function () { mw.hook( 'wikipage.content' ).add( ( $content ) => { $content.find( 'figure[typeof~="mw:File/Thumb"] > :not(figcaption) .mw-file-element' ).each( function () { const inner = this.parentNode; const wrapper = inner.parentNode; if ( this.classList.contains( 'mw-broken-media' ) ) { // Resize broken media spans, where needed const isDefault = wrapper.classList.contains( 'mw-default-size' ); if ( isDefault ) { return; } if ( this.hasAttribute( 'data-width' ) ) { this.style.width = this.getAttribute( 'data-width' ) + 'px'; } if ( this.hasAttribute( 'data-height' ) ) { this.style.height = this.getAttribute( 'data-height' ) + 'px'; } } else { // Add magnify links to thumbs, where needed const resource = this.getAttribute( 'resource' ); if ( !resource ) { return; } if ( inner.classList.contains( 'mw-file-description' ) ) { return; } const desc = this.ownerDocument.createElement( 'a' ); desc.setAttribute( 'href', resource ); // Using a different class than mw-file-description to avoid the // expectation that the media will be found inside it desc.classList.add( 'mw-file-magnify' ); wrapper.insertBefore( desc, inner.nextSibling ); } } ); } ); }() );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка