diff options
author | heeju.joo <heeju.joo@samsung.com> | 2013-05-09 19:35:22 +0900 |
---|---|---|
committer | hjnim.kim <hjnim.kim@samsung.com> | 2013-05-10 14:39:25 +0900 |
commit | e98fe3d2b326325eb864b6a4df3921faecc70186 (patch) | |
tree | e51c0bddc0a5e3000088ac23cf408beaca07d8cc | |
parent | cd51ee82b22fd80c0bdcb88bdb9aa1f0f299b0c5 (diff) | |
download | web-ui-fw-e98fe3d2b326325eb864b6a4df3921faecc70186.tar.gz web-ui-fw-e98fe3d2b326325eb864b6a4df3921faecc70186.tar.bz2 web-ui-fw-e98fe3d2b326325eb864b6a4df3921faecc70186.zip |
Radio: Radio issue has been fixed ( N_SE-38015 )
modify-radio button's name and function are proper each other.
Change-Id: I0840a3f49d8c66c8ad445122fd1194a3ce31a848
-rw-r--r-- | demos/tizen-winsets/widgets/radio/radio.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/demos/tizen-winsets/widgets/radio/radio.html b/demos/tizen-winsets/widgets/radio/radio.html index 21042ffc..64754af1 100644 --- a/demos/tizen-winsets/widgets/radio/radio.html +++ b/demos/tizen-winsets/widgets/radio/radio.html @@ -47,10 +47,11 @@ </p> <input type="radio" name="radio-1" id="radio-1" checked="checked" disabled="disabled" /> - <label for="radio-2">Checked, Disabled</label> + <label for="radio-1">Checked, Disabled</label> <input type="radio" name="radio-2" id="radio-2" disabled="disabled"/> - <label for="radio-3">Disabled</label> + <label for="radio-2">Disabled</label> <input type="radio" name="radio-3" id="radio-3"/> + <label for="radio-3">Unchecked</label> </div><!--/content-primary --> </div> |