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

Fix for .address1 in PDF

This commit is contained in:
Hillel Coren 2018-04-14 20:43:10 +03:00
parent 6a15c72f45
commit e8ea1eb18e
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 // search/replace values
var regExp = new RegExp('\\$[a-zA-Z\\.]*[Value]?', 'g'); var regExp = new RegExp('\\$[a-zA-Z0-9\\.]*[Value]?', 'g');
var matches = javascript.match(regExp); var matches = javascript.match(regExp);
if (matches) { if (matches) {