Merge branch 'alpha50' into css-refactor

This commit is contained in:
Adam Bradley
2015-12-09 07:47:30 -06:00
27 changed files with 71 additions and 49 deletions

View File

@ -72,7 +72,7 @@ export class RadioGroup extends Ion {
/**
* @private
*/
onInit() {
ngOnInit() {
let header = this.headerQuery.first;
if (header) {
if (!header.id) {
@ -210,8 +210,8 @@ export class RadioButton extends Ion {
/**
* @private
*/
onInit() {
super.onInit();
ngOnInit() {
super.ngOnInit();
this.group.registerRadio(this);
this.labelId = 'label-' + this.id;
}