mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-28 09:30:17 +00:00
[cleanup] Drop empty class
attribute from #footer > ul
elements
Change-Id: Ice0241b054cbc296e9f0adf1d2920023316c8ca0
This commit is contained in:
parent
54739cf1ba
commit
487eda02f4
|
@ -243,7 +243,7 @@ class VectorTemplate extends BaseTemplate {
|
|||
|
||||
$footerRows[] = [
|
||||
'id' => $rowId,
|
||||
'className' => '',
|
||||
'className' => null,
|
||||
'array-items' => $items
|
||||
];
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
{{{html-hook-vector-before-footer}}}
|
||||
<div id="footer" class="mw-footer" role="contentinfo" {{{html-userlangattributes}}}>
|
||||
{{#array-footer-rows}}
|
||||
<ul id="{{id}}" class="{{className}}">
|
||||
<ul id="{{id}}" {{#className}}class="{{.}}"{{/className}}>
|
||||
{{#array-items}}
|
||||
<li id="{{id}}">{{{html}}}</li>
|
||||
{{/array-items}}
|
||||
|
|
Loading…
Reference in a new issue