From ab7209f5bf537daa57b8d3f166b485b77ce02436 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 1 Nov 2023 08:12:13 -0700 Subject: [PATCH] Updated style docs to include the use of an array of ignite properties. --- ignite-template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignite-template.js b/ignite-template.js index 39baf58..eabd177 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -808,7 +808,7 @@ class IgniteTemplate { /** * Adds a CSS property to this template with a value and priority. * @param {String} name The name of the CSS property to set. - * @param {String|IgniteProperty} value The value to set for the property. If an IgniteProperty is used it will auto update this style. + * @param {String|IgniteProperty|IgniteProperty[]} value The value to set for the property. If an IgniteProperty is used it will auto update this style. * @param {String} priority If set to "important" then the style will be marked with !important. Acceptable values: important, !important, true, false, null * @param {Function} converter Optional function to convert the value if needed. * @returns {IgniteTemplate} This ignite template so function calls can be chained.