Added iframe element template.
This commit is contained in:
parent
645af63c30
commit
f4e314c7be
@ -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.
|
* An ignite template that can be used to construct a progress element.
|
||||||
*/
|
*/
|
||||||
@ -3595,5 +3607,6 @@ export {
|
|||||||
line,
|
line,
|
||||||
form,
|
form,
|
||||||
header,
|
header,
|
||||||
footer
|
footer,
|
||||||
|
iframe
|
||||||
};
|
};
|
Loading…
x
Reference in New Issue
Block a user