chore(): fix host properties for MD components.

This commit is contained in:
Jeremy Elbourn
2015-04-23 13:15:20 -07:00
committed by Jeremy Elbourn
parent dff4795e49
commit b9eab463f7
9 changed files with 38 additions and 35 deletions

View File

@ -13,13 +13,13 @@ export function commonDemoSetup(): void {
}
@Injectable()
@IMPLEMENTS(UrlResolver)
export class DemoUrlResolver {
export class DemoUrlResolver extends UrlResolver {
static a;
isInPubServe:boolean;
constructor() {
super();
if (isBlank(UrlResolver.a)) {
UrlResolver.a = DOM.createElement('a');
}