despotbg

despotbg

Joined
May 07, 2013

Activity Stream

if you wont to search just by one word change those line
if (contents.indexOf(this.options.trigger) >= 0 && check_contents.match(regex)) ==>
if (contents.indexOf(this.options.trigger) >= 0 && check_contents.match(regex) && check_contents.indexOf(' ') <= 0)

 Respond  

If you wont to search non latinic word change this line:
var regex = new RegExp('\B\'+this.options.trigger+'([\w\-]+)'); =>> var regex = new RegExp('\B\'+this.options.trigger+'([\S\-]+)');

 Respond  

How to disable searching by multi words? I need just search by one word?

Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.