mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 06:28:29 +01:00
20 lines
576 B
TypeScript
20 lines
576 B
TypeScript
namespace OS {
|
|
|
|
export namespace application {
|
|
/**
|
|
*
|
|
* @class SVGEdit
|
|
* @extends {BaseApplication}
|
|
*/
|
|
export class SVGEdit extends BaseApplication {
|
|
constructor(args: AppArgumentsType[]) {
|
|
super("SVGEdit", args);
|
|
}
|
|
main(): void {
|
|
// set iframe data
|
|
const index_page = 'pkg://SVGEdit/svgedit/index.html'.asFileHandle().getlink();
|
|
this.find<HTMLIFrameElement>("container").src = index_page;
|
|
}
|
|
}
|
|
}
|
|
} |