summaryrefslogtreecommitdiffstats
path: root/webchat/public/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'webchat/public/functions.js')
-rw-r--r--webchat/public/functions.js11
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) {