Doctor Who Cuttings Archive

Difference between revisions of "MediaWiki:Common.js"

From The Doctor Who Cuttings Archive
Jump to navigationJump to search
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
var addExtraButtons = function(){
+
 
    mw.toolbar.addButtons( {
+
mw.toolbar.addButton({
         imageFile: 'http://cuttingsarchive.org/images/a/a2/Button_principal_large.png',
+
        imageId: 'mw-customeditbutton-myspecialbutton',
         speedTip: 'Comment visible only for editors',
+
         imageFile: '//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
         tagOpen: '
+
         speedTip: "Title label",
 +
         tagOpen: "
 +
 
 
{{jpg
 
{{jpg
 
|filename =
 
|filename =
Line 32: Line 34:
 
     } );
 
     } );
 
};
 
};
+
",
if( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
+
         tagClose: ")",
    mw.loader.using( 'user.options', function () {
+
         sampleText: "sample"
         if ( ! mw.user.options.get( 'usebetatoolbar' ) ) {
+
});
            mw.loader.using( 'mediawiki.action.edit', function(){
 
                $( addExtraButtons );
 
            } );
 
         }
 
    } );
 
}
 

Revision as of 23:50, 20 October 2013

/* Any JavaScript here will be loaded for all users on every page load. */

mw.toolbar.addButton({
        imageId: 'mw-customeditbutton-myspecialbutton',
        imageFile: '//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
        speedTip: "Title label",
        tagOpen: "

{{jpg
|filename =
|px =
}}

{{Google Docs Viewer
|url=
|float=|height=|width=|top caption=|bottom caption=}}

{{article         x
| publication =
| date =
| author =
| pages =
| type =
| description =
| categories =
| moreTitles =
| morePublications =
| moreDates =
| text =
}} ',
        tagClose: '',
        sampleText: '',
        imageId: ''
    } );
};
",
        tagClose: ")",
        sampleText: "sample"
});