Build update

This commit is contained in:
Francisco Hodge 2019-11-11 11:45:58 +00:00
parent 04ccc4903c
commit dc58bf92d3
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v2.27.1
* simple-keyboard v2.27.2
* https://github.com/hodgef/simple-keyboard
*
* Copyright (c) Francisco Hodge (https://github.com/hodgef)

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v2.27.1
* simple-keyboard v2.27.2
* https://github.com/hodgef/simple-keyboard
*
* Copyright (c) Francisco Hodge (https://github.com/hodgef)

View File

@ -818,7 +818,7 @@ 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 +849,8 @@ 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(" ");