Anonymous
×
Create a new article
Write your page title here:
We currently have 5 articles on CATCRAFT WIKI. Type your article name above or click on one of the titles below and start writing!



CATCRAFT WIKI

Template:Crate Infobox and MediaWiki:Common.js: Difference between pages

(Difference between pages)
(Created page with "<includeonly> {| class="infobox" style="width: 300px; text-align: left; border: 1px solid #aaa; background-color: #f9f9f9; padding: 5px;" ! colspan="2" style="text-align: center; font-size: 1.2em; background-color: #cccccc;" | {{{name|Crate Name}}} |- ! Image | [[File:{{{image|No_image_available.jpg}}}|200px]] |- ! Year | {{{year|Year not provided}}} |- ! Description | {{{description|No description available}}} |} </includeonly>")
 
No edit summary
Tag: Manual revert
 
Line 1: Line 1:
<includeonly>
/* Any JavaScript here will be loaded for all users on every page load. */
{| class="infobox" style="width: 300px; text-align: left; border: 1px solid #aaa; background-color: #f9f9f9; padding: 5px;"
// Show the toolbar only for the owner
! colspan="2" style="text-align: center; font-size: 1.2em; background-color: #cccccc;" | {{{name|Crate Name}}}
mw.loader.using('mediawiki.util', function () {
|-
    if (mw.config.get('wgUserName') === 'DarkChroma') {
! Image
        var toolbar = document.getElementById('p-tb');
| [[File:{{{image|No_image_available.jpg}}}|200px]]
        if (toolbar) {
|-
            toolbar.style.display = 'block';
! Year
        }
| {{{year|Year not provided}}}
    }
|-
});
! Description
| {{{description|No description available}}}
|}
</includeonly>

Latest revision as of 07:44, 7 May 2023

/* Any JavaScript here will be loaded for all users on every page load. */
// Show the toolbar only for the owner
mw.loader.using('mediawiki.util', function () {
    if (mw.config.get('wgUserName') === 'DarkChroma') {
        var toolbar = document.getElementById('p-tb');
        if (toolbar) {
            toolbar.style.display = 'block';
        }
    }
});