Added ol template.

This commit is contained in:
MattMo 2023-12-24 09:51:36 -08:00
parent 4e0bb96747
commit 82834320f6

View File

@ -2012,6 +2012,18 @@ class ul extends IgniteTemplate {
}
}
/**
* An ignite template that can be used to construct a ol element.
*/
class ol extends IgniteTemplate {
/**
* @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template.
*/
constructor(...children) {
super("ol", children);
}
}
/**
* An ignite template that can be used to construct a li element.
*/
@ -3952,6 +3964,7 @@ export {
i,
nav,
ul,
ol,
li,
br,
img,