1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Bug fixes

This commit is contained in:
Hillel Coren 2014-03-17 20:11:39 +02:00
parent 833da15d45
commit c25e821748
2 changed files with 1 additions and 3 deletions

View File

@ -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() {

View File

@ -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),