mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 02:45:25 +00:00
(js) Cleanup unused functions
This commit is contained in:
@@ -594,35 +594,6 @@
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* @function $getCard
|
||||
* @memberof AddressBook.prototype
|
||||
* @desc Fetch the card attributes from the server.
|
||||
* @returns a promise of the HTTP operation
|
||||
*/
|
||||
AddressBook.prototype.$getCard = function(cardId) {
|
||||
var _this = this;
|
||||
|
||||
return this.$id().then(function(addressbookId) {
|
||||
var fullCard,
|
||||
cachedCard = _.find(_this.$cards, function(data) {
|
||||
return cardId == data.id;
|
||||
});
|
||||
|
||||
if (cachedCard && cachedCard.$futureCardData)
|
||||
// Full card is available
|
||||
return cachedCard;
|
||||
|
||||
fullCard = AddressBook.$Card.$find(addressbookId, cardId);
|
||||
fullCard.$id().then(function(cardId) {
|
||||
// Extend the Card object of the addressbook list with the full card description
|
||||
if (cachedCard)
|
||||
angular.extend(cachedCard, fullCard);
|
||||
});
|
||||
return fullCard;
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* @function $exportCards
|
||||
* @memberof AddressBook.prototype
|
||||
|
||||
Reference in New Issue
Block a user