Build update

This commit is contained in:
Francisco Hodge
2019-11-12 10:24:58 +00:00
parent ce4dbb68c0
commit ad1e93c75b
5 changed files with 10 additions and 7 deletions
+6 -3
View File
@@ -818,7 +818,8 @@ class SimpleKeyboard {
if (
themeObj.class &&
typeof themeObj.class === "string" &&
themeObj.buttons && typeof themeObj.buttons === "string"
themeObj.buttons &&
typeof themeObj.buttons === "string"
) {
let themeObjClasses = themeObj.class.split(" ");
let themeObjButtons = themeObj.buttons.split(" ");
@@ -849,8 +850,10 @@ class SimpleKeyboard {
if (
attrObj.attribute &&
typeof attrObj.attribute === "string" &&
attrObj.value && typeof attrObj.value === "string" &&
attrObj.buttons && typeof attrObj.buttons === "string"
attrObj.value &&
typeof attrObj.value === "string" &&
attrObj.buttons &&
typeof attrObj.buttons === "string"
) {
let attrObjButtons = attrObj.buttons.split(" ");