diff --git a/app/views/invoices/edit.blade.php b/app/views/invoices/edit.blade.php index 2e8f9b31fb60..e299045883b2 100755 --- a/app/views/invoices/edit.blade.php +++ b/app/views/invoices/edit.blade.php @@ -457,7 +457,6 @@ $(function() { $('#country_id').combobox().on('change', function(e) { - console.log('changed country'); var countryId = parseInt($('input[name=country_id]').val(), 10); var foundMatch = false; $('#country_id option').each(function() { diff --git a/public/js/script.js b/public/js/script.js index 15e7f589a148..d14a8ea63fab 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -1289,8 +1289,7 @@ function displayClient(doc, invoice, x, y, layout) { var client = invoice.client; if (!client) { return; - } - console.log('=== country: ' + (client.country ? client.country.name : false)); + } var data = [ getClientDisplayName(client), concatStrings(client.address1, client.address2),