(fix) reworked c_ prefixes on givenname,cn,sn,o and component.

This makes it easier to map to the quick table and avoid
fields duplications.
This commit is contained in:
Ludovic Marcotte
2015-07-27 12:47:40 -04:00
parent dc9a0896e5
commit 40dd3e5875
11 changed files with 44 additions and 69 deletions
+1 -1
View File
@@ -126,7 +126,7 @@
stateNewCard.$inject = ['$stateParams', 'stateAddressbook', 'Card'];
function stateNewCard($stateParams, stateAddressbook, Card) {
var tag = 'v' + $stateParams.contactType,
card = new Card({ pid: $stateParams.addressbookId, tag: tag });
card = new Card({ pid: $stateParams.addressbookId, c_component: tag });
stateAddressbook.selectedCard = true;
return card;
}