@Wuks: Polls markup needs some love

Modi·8/29/2018, 4:09:48 PM·1 votes·1,730 views

<ol class="riot-athena-choice-collection"> <li class="riot-athena-choice" data-choice-id="0"> <input type="radio" value="0" id="riot-athena-choice-0" class="selected"> Choice 1 </li> <li class="riot-athena-choice" data-choice-id="1"> <input type="radio" value="1" id="riot-athena-choice-1"> Choice 2 </li> </ol>

Should be:

<ol class="riot-athena-choice-collection"> <li class="riot-athena-choice" data-choice-id="0"> <input type="radio" value="0" id="riot-athena-choice-0" class="selected"> <label for="riot-athena-choice-0">Choice 1</label> </li> <li class="riot-athena-choice" data-choice-id="1"> <input type="radio" value="1" id="riot-athena-choice-1"> <label for="riot-athena-choice-1">Choice 2</label> </li> </ol>

0 Comments