From f35176a32e1e39bdbe0e1fcb6968345419cc6f7a Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Fri, 28 May 2021 11:17:38 +0200 Subject: [PATCH] Replace clazz by classNames --- src/core/xfa/template.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/core/xfa/template.js b/src/core/xfa/template.js index ef7e89e9f..c147679dd 100644 --- a/src/core/xfa/template.js +++ b/src/core/xfa/template.js @@ -1465,15 +1465,15 @@ class Draw extends XFAObject { "borderMarginPadding" ); - const clazz = ["xfaDraw"]; + const classNames = ["xfaDraw"]; if (this.font) { - clazz.push("xfaFont"); + classNames.push("xfaFont"); } const attributes = { style, id: this[$uid], - class: clazz.join(" "), + class: classNames.join(" "), }; if (this.name) { @@ -2012,14 +2012,14 @@ class ExclGroup extends XFAObject { "borderMarginPadding", "hAlign" ); - const clazz = ["xfaExclgroup"]; + const classNames = ["xfaExclgroup"]; const cl = layoutClass(this); if (cl) { - clazz.push(cl); + classNames.push(cl); } attributes.style = style; - attributes.class = clazz.join(" "); + attributes.class = classNames.join(" "); if (this.name) { attributes.xfaName = this.name; @@ -2257,16 +2257,16 @@ class Field extends XFAObject { "hAlign" ); - const clazz = ["xfaField"]; + const classNames = ["xfaField"]; // If no font, font properties are inherited. if (this.font) { - clazz.push("xfaFont"); + classNames.push("xfaFont"); } const attributes = { style, id: this[$uid], - class: clazz.join(" "), + class: classNames.join(" "), }; if (this.name) { @@ -3988,14 +3988,14 @@ class Subform extends XFAObject { "borderMarginPadding", "hAlign" ); - const clazz = ["xfaSubform"]; + const classNames = ["xfaSubform"]; const cl = layoutClass(this); if (cl) { - clazz.push(cl); + classNames.push(cl); } attributes.style = style; - attributes.class = clazz.join(" "); + attributes.class = classNames.join(" "); if (this.name) { attributes.xfaName = this.name;