From 82834320f6d2a1ac1c99ff6ab944412fe6040bf9 Mon Sep 17 00:00:00 2001 From: MattMo Date: Sun, 24 Dec 2023 09:51:36 -0800 Subject: [PATCH] Added ol template. --- ignite-template.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index be918e5..26d0227 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -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,