From 2a22c3a89f0baa7e8ce0507320d6fd1f997747d5 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 26 Jan 2022 01:48:42 -0800 Subject: [PATCH] Made placeholder respect textarea's. --- ignite-template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignite-template.js b/ignite-template.js index 53c8ade..cec2456 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -1029,7 +1029,7 @@ class IgniteTemplate { */ placeholder(value, converter = null) { //If this is a input element, modify the attribute, otherwise add the placeholder class. - if (this.tagName == "input") { + if (this.tagName == "input" || this.tagName == "textarea") { return this.attribute("placeholder", value, converter); } else { if (value instanceof IgniteProperty) {