diff options
Diffstat (limited to 'src/modules/helpers.ts')
| -rw-r--r-- | src/modules/helpers.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/helpers.ts b/src/modules/helpers.ts index 862f121..ab5ed15 100644 --- a/src/modules/helpers.ts +++ b/src/modules/helpers.ts @@ -2,7 +2,7 @@ export default class Helpers { //@ts-expect-error readonly chatListScroll = $("#chatlist").tinyscrollbar(); - isColor(strColor: string) { + isColor(strColor: string): boolean { const s = new Option().style; s.color = strColor; return s.color !== ""; |
