Mostly this has a bunch of whitespace changes from the template-curly-spacing and brace-style rules being set to align with other spacing rules. Change-Id: I4609c52a4ef426ad1f35fb4bfe447bb08323a8e8
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
'use strict';
|
|
|
|
const Page = require( './Page' );
|
|
|
|
class BlankPage extends Page {
|
|
get heading() {
|
|
return $( '#firstHeading' );
|
|
}
|
|
|
|
async open() {
|
|
await super.openTitle( 'Special:BlankPage', { uselang: 'en' } );
|
|
}
|
|
}
|
|
|
|
module.exports = new BlankPage();
|