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.js20
1 files changed, 3 insertions, 17 deletions
diff --git a/webchat/public/functions.js b/webchat/public/functions.js
index 45c8ad3f..244af67b 100644
--- a/webchat/public/functions.js
+++ b/webchat/public/functions.js
@@ -3,25 +3,11 @@ function inputParser (str) {
if (match) {
return { method: match[1], params: match[2] }
} else {
- return { method: 'say', params: str }
+ return { method: 'msg', params: str }
}
}
-function methodDispatcher (settings, object) {
- console.log('parser: ',object)
- return (handler[object.method] || console.log)(settings, object.params)
-};
-
-function resultDispatcher (settings, object) {
- console.log('parser: ',object)
- var callback = settings.waiting_callbacks[object.id]
- delete settings.waiting_callbacks[object.id]
- if (typeof callback === 'function') {
- callback(object.error, object.result)
- }
-};
-
function replaceURLWithHTMLLinks (text) {
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
@@ -37,9 +23,9 @@ function setMaybeNick (input) {
function sortNicklist () {
};
-function getNicklistElement(name) {
+function getNicklistElement(name, type) {
var el;
- $('.name').each(function (i,e) {
+ $('.'+type+'_name').each(function (i,e) {
if (e.innerHTML === name) {
if (typeof el !== 'undefined') {
throw new Error('duplicate name: ' + name);