Browse Source

Fixed import phonebook

Closes #549
master
Igor Zhukov 10 years ago
parent
commit
eb45bfae75
  1. 2
      app/js/services.js

2
app/js/services.js

@ -401,7 +401,7 @@ angular.module('myApp.services', ['myApp.i18n'])
phones: [] phones: []
}; };
if (this.result.tel !== undefined) { if (this.result.tel != undefined) {
for (var i = 0; i < this.result.tel.length; i++) { for (var i = 0; i < this.result.tel.length; i++) {
contact.phones.push(this.result.tel[i].value); contact.phones.push(this.result.tel[i].value);
} }

Loading…
Cancel
Save