Skip to content
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.

Change HTML for RadioButton from div to li #285

Merged
merged 2 commits into from
Feb 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/RadioButton/RadioButton.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information. -->
<div class="ms-RadioButton">
<li class="ms-RadioButton">
<input tabindex="-1" type="radio" class="ms-RadioButton-input">
<label role="{{props.type}}"
class="ms-RadioButton-field{{#if props.disabled}} is-disabled{{/if}}"
Expand All @@ -9,4 +9,4 @@
{{~#if props.disabled}}aria-disabled="true"{{~/if}}>
<span class="ms-Label">{{props.label}}</span>
</label>
</div>
</li>