mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-12 08:58:25 +00:00
d29eca2bc8
This experiments with making PageIssuesOverlay an Overlay with various options. The appending of children is a little messy and points at a need to standardise this some way (see https://phabricator.wikimedia.org/T209647) TODO: * Remove the iconString property on PageIssueSummary which is no longer needed Bug: T209647 Change-Id: Iadd798a820dca6bbb31edc9a8570b6db7aac237a
31 lines
684 B
JavaScript
31 lines
684 B
JavaScript
( function ( M ) {
|
|
var View = M.require( 'mobile.startup' ).View,
|
|
IssueNotice = M.require( 'skins.minerva.scripts/IssueNotice' );
|
|
|
|
/**
|
|
* IssueList
|
|
* @class IssueList
|
|
* @extends View
|
|
*
|
|
* @param {IssueSummary} issues
|
|
*/
|
|
function IssueList( issues ) {
|
|
this.issues = issues;
|
|
View.call( this, { className: 'cleanup' } );
|
|
}
|
|
|
|
OO.mfExtend( IssueList, View, {
|
|
tagName: 'ul',
|
|
postRender: function () {
|
|
View.prototype.postRender.apply( this, arguments );
|
|
this.append(
|
|
this.issues.map( function ( issue ) {
|
|
return new IssueNotice( issue ).$el;
|
|
} )
|
|
);
|
|
}
|
|
} );
|
|
|
|
M.define( 'skins.minerva.scripts/IssueList', IssueList );
|
|
}( mw.mobileFrontend ) );
|