(Angular 2 RC4)
With @HostBinding we should be able to modify properties of the host, right? My question is, does this apply to @Input() properties as well and if so
You need to combine the decorators like this:
@HostBinding('class.active') @Input() active: boolean = false;