Skip to content

Commit 168b0b9

Browse files
committed
fix(ngScenario): Restrict radio/checkbox check switch in IE<9
Only flip the element `checked` value when triggering `click` events in IE8 and lower.
1 parent 15cedd2 commit 168b0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ngScenario/browserTrigger.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
}
6666

6767
if (msie < 9) {
68-
if (inputType == 'radio' || inputType == 'checkbox') {
68+
if ((inputType == 'radio' || inputType == 'checkbox') && (eventType == 'click')) {
6969
element.checked = !element.checked;
7070
}
7171

0 commit comments

Comments
 (0)