mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
a32999e641
Change-Id: Icabf6e065ed5685207731262db72faf848a0a04d
14 lines
371 B
JavaScript
14 lines
371 B
JavaScript
/**
|
|
* A list of all custom Minerva pageObjects.
|
|
* To simplify imports in world.js.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
ArticlePage: require( './article_page' ),
|
|
ArticlePageWithEditorOverlay: require( './article_page_with_editor_overlay' ),
|
|
SpecialHistoryPage: require( './special_history_page' ),
|
|
SpecialMobileDiffPage: require( './special_mobilediff_page' )
|
|
};
|