diff options
Diffstat (limited to 'extensions/Vector/modules/ext.vector.footerCleanup.js')
-rw-r--r-- | extensions/Vector/modules/ext.vector.footerCleanup.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/extensions/Vector/modules/ext.vector.footerCleanup.js b/extensions/Vector/modules/ext.vector.footerCleanup.js deleted file mode 100644 index 7c4b6898..00000000 --- a/extensions/Vector/modules/ext.vector.footerCleanup.js +++ /dev/null @@ -1,31 +0,0 @@ -/** - * Footer cleanup for Vector - */ -( function ( $ ) { - // Wait for onload to remove edit help and "|" after cancel link. - window.onload = function () { - // Only if advanced editor is found. - if ( 'wikiEditor' in $ ) { - $( '.editButtons' ).find( '.editHelp' ).remove(); - // Remove the "|" from after the cancelLink. - var $cancelLink = $( '#mw-editform-cancel' ); - $cancelLink.parent().empty().append( $cancelLink ); - // Adjustment for proper right side alignment with WikiEditor. - $( '.editOptions, #editpage-specialchars' ).css( 'margin-right', '-2px' ); - } - }; - // Waiting until dom ready as the module is loaded in the head. - $( document ).ready( function () { - // Make "Templates used" a collapsible list. - $( '.templatesUsed ul' ).footerCollapsibleList( { - name: 'templates-used-list', - title: mw.msg( 'vector-footercleanup-templates' ) - } ); - - // Make "Hidden categories" a collapsible list. - $( '.hiddencats ul' ).footerCollapsibleList( { - name: 'hidden-categories-list', - title: mw.msg( 'vector-footercleanup-categories' ) - } ); - } ); -} ( jQuery ) ); |