1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Support work_email or workEmail

This commit is contained in:
Hillel Coren 2018-04-15 00:24:44 +03:00
parent e8ea1eb18e
commit 579f078f57
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -342,7 +342,7 @@ NINJA.decodeJavascript = function(invoice, javascript)
}
// search/replace values
var regExp = new RegExp('\\$[a-zA-Z0-9\\.]*[Value]?', 'g');
var regExp = new RegExp('\\$[a-zA-Z0-9_\\.]*[Value]?', 'g');
var matches = javascript.match(regExp);
if (matches) {