Skip to content

Commit

Permalink
fix a strong mode error
Browse files Browse the repository at this point in the history
  • Loading branch information
zoechi authored and kevmoo committed Oct 21, 2016
1 parent 63ecb30 commit 617fe22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/app.dart
Expand Up @@ -83,7 +83,7 @@ void _typeItOut(String msg, int pos) {
}

void _switchFlavor(Event e) {
var target = e.currentTarget;
var target = e.currentTarget as HtmlElement;
if (!target.attributes.containsKey('checked')) {
if (basicRadio != target) {
basicRadio.attributes.remove('checked');
Expand Down

0 comments on commit 617fe22

Please sign in to comment.