CMTV
Well-known member
In public templates
For example this code:
Produces this output:
No sign of
class="..."
attribute is not working for <xf:radiorow
tag.For example this code:
HTML:
<xf:radiorow class="js-mathTypeSwitcher" name="math-type">
<xf:option value="inline">{{ phrase('Math_inline') }}</xf:option>
<xf:option value="block">{{ phrase('Math_block') }}</xf:option>
</xf:radiorow>
Produces this output:
HTML:
<ul class="inputChoices">
<li class="inputChoices-choice">
<label class="iconic iconic--radio iconic--labelled">
<input type="radio" name="math-type" value="inline"><i aria-hidden="true"></i>Inline
</label>
</li>
<li class="inputChoices-choice">
<label class="iconic iconic--radio iconic--labelled">
<input type="radio" name="math-type" value="block"><i aria-hidden="true"></i>Block
</label>
</li>
</ul>
No sign of
js-mathTypeSwitcher
class.