Merge "Use lead section when editing page without section marks"

This commit is contained in:
jenkins-bot 2017-08-02 14:49:18 +00:00 committed by Gerrit Code Review
commit 9a6770ee18
1 changed files with 4 additions and 1 deletions

View File

@ -250,8 +250,11 @@
$( '.nojs-edit' ).removeClass( 'nojs-edit' );
$( '#ca-edit a' ).remove();
// FIXME: unfortunately the main page is special cased.
if ( mw.config.get( 'wgIsMainPage' ) || isNewPage || ( leadSection && leadSection.text() ) ) {
if ( mw.config.get( 'wgIsMainPage' ) || isNewPage ||
( leadSection && leadSection.text() ) || page.getSections().length === 0 ) {
// if lead section is not empty, open editor with lead section
// In some namespaces (controlled by MFNamespacesWithoutCollapsibleSections)
// sections are not marked. Use the lead section for such cases.
addEditButton( 0, '#ca-edit' );
} else {
// if lead section is empty or does not exist, open editor with first section