diff options
author | lassulus <lassulus@googlemail.com> | 2013-11-12 02:06:24 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-11-12 02:06:24 +0100 |
commit | fc72fda5fc46daea25a991ba6b907a793e52ed06 (patch) | |
tree | e2cf45b464d7e32a909090a21a0ffd239a29d82c /webchat/public/functions.js | |
parent | 3531d46cc3644a64b990f904e40e4846b8242a07 (diff) |
webchat: remove cruft
Diffstat (limited to 'webchat/public/functions.js')
-rw-r--r-- | webchat/public/functions.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/webchat/public/functions.js b/webchat/public/functions.js index 244af67b..781fafce 100644 --- a/webchat/public/functions.js +++ b/webchat/public/functions.js @@ -7,22 +7,11 @@ function inputParser (str) { } } - - function replaceURLWithHTMLLinks (text) { var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig; return text.replace(exp,"<a class=chat_link href='$1'>$1</a>"); } -function setMaybeNick (input) { - if (match) { - nick = match[1]; - $('#nick').html(nick); - } -} -function sortNicklist () { -}; - function getNicklistElement(name, type) { var el; $('.'+type+'_name').each(function (i,e) { |