test(): add init config and queryParam tests

This commit is contained in:
mhartington
2017-12-19 16:51:45 -05:00
parent ec2bf8bfbe
commit dbb6438088
5 changed files with 35 additions and 8 deletions

View File

@ -155,7 +155,7 @@ export function applyStyles(elm: HTMLElement, styles: {[styleProp: string]: stri
if (elm) {
for (var i = 0; i < styleProps.length; i++) {
(<any>elm.style)[styleProps[i]] = styles[styleProps[i]];
(elm.style as any)[styleProps[i]] = styles[styleProps[i]];
}
}
}