fix(core): update

This commit is contained in:
2020-11-04 18:09:07 +00:00
parent 0884b61099
commit ca3398c4fd
11 changed files with 156 additions and 430 deletions

View File

@@ -1,4 +1,4 @@
import { Tag } from "./websetup.classes.tag";
import { Tag } from './websetup.classes.tag';
export class MetaTag extends Tag {
constructor(metaNameArg: string, contentArg: string) {
@@ -8,4 +8,4 @@ export class MetaTag extends Tag {
metaElement.content = contentArg;
this.elementRef = metaElement;
}
}
}