diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/scripts/chat.js | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index a3f2fda..c875698 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -211,14 +211,19 @@ function chat() { attributes: { placeholder: 'Contact ID', }, - }).then(contactId => connect(contactId).then(() => swal({ - title: 'Connecting...', - icon: 'info', - text: ' ', - buttons: false, - closeOnClickOutside: false, - closeOnEsc: false - }))) + }).then(contactId => { + if (contactId.match(/^([a-zA-Z]*-[a-zA-Z]*)+$/)) { + connect(contactId).then(() => swal({ + title: 'Connecting...', + icon: 'info', + text: ' ', + buttons: false, + closeOnClickOutside: false, + closeOnEsc: false + })) + } else + swal('Invalid ID!', '', 'error') + }) } /** |