You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
} else if (current.text.indexOf('!google') > -1) {
where = current.text.indexOf('!google') + 8;
which = 'google';
}
var term = current.text.substr(where).trim();
if (term == '') {
var send_confusion = new x_snc_slackerbot.Slacker().send_chat(current.channel, ':upside_down_face: !'+ where + '*something*', false, '', current.thread_ts);
}
if (which == 'lmgtfy')
{
var send_lmgtfy = new x_snc_slackerbot.Slacker().send_chat(current, 'http://lmgtfy.com/?q=' + escape(term), false, '', current.thread_ts);
} else if (which == 'google') {
var send_google = new x_snc_slackerbot.Slacker().send_chat(current, 'https://www.google.com/search?q=' + escape(term), false, '', current.thread_ts);