diff options
| author | Maks Jopek <maksymilian.jopek@prym-soft.pl> | 2021-05-26 18:50:18 +0200 |
|---|---|---|
| committer | Maks Jopek <maksymilian.jopek@prym-soft.pl> | 2021-05-26 18:50:18 +0200 |
| commit | 1afb236c2d6828883e139652dd8c89d8949b8039 (patch) | |
| tree | 905386f1ee4210937682d62d7f75bdc771184c80 /src/modules/helpers.ts | |
| parent | aa13f322e2d59fdc3c50371572c0cad443b798ec (diff) | |
| download | IRC-1afb236c2d6828883e139652dd8c89d8949b8039.tar.gz IRC-1afb236c2d6828883e139652dd8c89d8949b8039.tar.zst IRC-1afb236c2d6828883e139652dd8c89d8949b8039.zip | |
Version v1.0.2
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 !== ""; |
