Added ol template.
This commit is contained in:
parent
4e0bb96747
commit
82834320f6
@ -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.
|
* An ignite template that can be used to construct a li element.
|
||||||
*/
|
*/
|
||||||
@ -3952,6 +3964,7 @@ export {
|
|||||||
i,
|
i,
|
||||||
nav,
|
nav,
|
||||||
ul,
|
ul,
|
||||||
|
ol,
|
||||||
li,
|
li,
|
||||||
br,
|
br,
|
||||||
img,
|
img,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user