From 645b0520b02b49d91a4f55a089acd737d6e08bdf Mon Sep 17 00:00:00 2001 From: MattMo Date: Thu, 16 Dec 2021 11:53:19 -0800 Subject: [PATCH] Added prop shortcut to property. --- ignite-template.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index c450a24..73ef483 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -240,6 +240,18 @@ class IgniteTemplate { return this; } + /** + * Sets a property on the element this template will construct. (Shorthand for property()) + * @param {String} name Name of the property to set. + * @param {Any|IgniteProperty} value Value of the property to use. If a Property is passed the value will auto update. + * @param {Boolean} reflect If true whenever this property is changed it's value will be passed back to the Property that was passed as value if one was passed. + * @param {Function} converter Optional function that can be used to convert the value if needed. + * @returns This ignite template so function calls can be chained. + */ + prop(name, value, reflect = false, converter = null) { + return this.property(name, value, reflect, converter); + } + /** * Sets a property on the element this template will construct. * @param {String} name Name of the property to set.