* Sets the style of the grid-tile element. Needs to be set manually to avoid * "Changed after checked" errors that would occur with HostBinding.
(property: string, value: any)
| 65 | * "Changed after checked" errors that would occur with HostBinding. |
| 66 | */ |
| 67 | _setStyle(property: string, value: any): void { |
| 68 | (this._element.nativeElement.style as any)[property] = value; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | @Component({ |
no outgoing calls
no test coverage detected