fix semicolons

This commit is contained in:
rolux 2014-08-19 10:19:59 +02:00
commit 1b90cc6ac8
12 changed files with 38 additions and 38 deletions

View file

@ -9,5 +9,5 @@ Ox.escapeRegExp <f> Escapes a string for use in a regular expression
@*/
// see https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions
Ox.escapeRegExp = function(string) {
return (string + '').replace(/([\/\\^$*+?.\-|(){}[\]])/g, '\\$1')
return (string + '').replace(/([\/\\^$*+?.\-|(){}[\]])/g, '\\$1');
};