From f4e314c7beb71d24e4d104387df62f4afeddf500 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 11 Oct 2023 18:01:33 -0700 Subject: [PATCH] Added iframe element template. --- ignite-template.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ignite-template.js b/ignite-template.js index 8d6fea7..7cc4b47 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2038,6 +2038,18 @@ class footer extends IgniteTemplate { } } +/** + * An ignite template that can be used to construct a iframe element. + */ +class iframe extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("iframe", children); + } +} + /** * An ignite template that can be used to construct a progress element. */ @@ -3595,5 +3607,6 @@ export { line, form, header, - footer + footer, + iframe }; \ No newline at end of file