This one was easier than I thougth.. :-)
All you have to do is remove the "^" from the 2 lines represented on the function bellow:
function runMatchingLogic(userInput, standalone) { re1m = new RegExp("^([ \"\>\<\-]*)("+userInput+")","i"); ... re1 = new RegExp("^([ \"\}\{\-]*)("+userInput+")","gi"); ... }
Log in to post a comment.
This one was easier than I thougth.. :-)
All you have to do is remove the "^" from the 2 lines represented on the function bellow:
function runMatchingLogic(userInput, standalone) {
re1m = new RegExp("^([ \"\>\<\-]*)("+userInput+")","i");
...
re1 = new RegExp("^([ \"\}\{\-]*)("+userInput+")","gi");
...
}