Config.ts 366 B

1234567891011121314
  1. export class Config {
  2. public static init(args: { themePath: string }) {
  3. if (args.themePath) {
  4. $("head").find("#adoreTheme").remove();
  5. $("<link type='text/css' rel='stylesheet'>").attr(
  6. {
  7. "id": "adoreTheme", "href": args.themePath
  8. }).appendTo(document.head);
  9. }
  10. }
  11. }