mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-20 01:22:59 +08:00
Build update
This commit is contained in:
parent
ce4dbb68c0
commit
ad1e93c75b
@ -1,6 +1,6 @@
|
|||||||
/*!
|
/*!
|
||||||
*
|
*
|
||||||
* simple-keyboard v2.27.2
|
* simple-keyboard v2.27.3
|
||||||
* https://github.com/hodgef/simple-keyboard
|
* https://github.com/hodgef/simple-keyboard
|
||||||
*
|
*
|
||||||
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
|
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
/*!
|
/*!
|
||||||
*
|
*
|
||||||
* simple-keyboard v2.27.2
|
* simple-keyboard v2.27.3
|
||||||
* https://github.com/hodgef/simple-keyboard
|
* https://github.com/hodgef/simple-keyboard
|
||||||
*
|
*
|
||||||
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
|
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
|
||||||
|
File diff suppressed because one or more lines are too long
@ -818,7 +818,8 @@ class SimpleKeyboard {
|
|||||||
if (
|
if (
|
||||||
themeObj.class &&
|
themeObj.class &&
|
||||||
typeof themeObj.class === "string" &&
|
typeof themeObj.class === "string" &&
|
||||||
themeObj.buttons && typeof themeObj.buttons === "string"
|
themeObj.buttons &&
|
||||||
|
typeof themeObj.buttons === "string"
|
||||||
) {
|
) {
|
||||||
let themeObjClasses = themeObj.class.split(" ");
|
let themeObjClasses = themeObj.class.split(" ");
|
||||||
let themeObjButtons = themeObj.buttons.split(" ");
|
let themeObjButtons = themeObj.buttons.split(" ");
|
||||||
@ -849,8 +850,10 @@ class SimpleKeyboard {
|
|||||||
if (
|
if (
|
||||||
attrObj.attribute &&
|
attrObj.attribute &&
|
||||||
typeof attrObj.attribute === "string" &&
|
typeof attrObj.attribute === "string" &&
|
||||||
attrObj.value && typeof attrObj.value === "string" &&
|
attrObj.value &&
|
||||||
attrObj.buttons && typeof attrObj.buttons === "string"
|
typeof attrObj.value === "string" &&
|
||||||
|
attrObj.buttons &&
|
||||||
|
typeof attrObj.buttons === "string"
|
||||||
) {
|
) {
|
||||||
let attrObjButtons = attrObj.buttons.split(" ");
|
let attrObjButtons = attrObj.buttons.split(" ");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user