From 7b2d68dbe5f59e830458b30b47a293d3f818dc79 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 9 Feb 2019 17:25:40 +0100 Subject: Added ID input check --- public/scripts/chat.js | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'public') 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') + }) } /** -- cgit v1.2.3