update components

This commit is contained in:
Luke Pulverenti 2016-01-13 16:22:46 -05:00
parent 2c580f4f73
commit 3578670ef6
37 changed files with 1463 additions and 1145 deletions

View file

@ -138,7 +138,8 @@ information about `paper-radio-button`.
if (this.allowEmptySelection) {
value = '';
} else {
oldItem.checked = true;
if (oldItem)
oldItem.checked = true;
return;
}
}