Fix multi-selection of cards in Firefox

This commit is contained in:
Francis Lachapelle
2015-12-21 11:40:01 -05:00
parent 40d9fa059f
commit c08f507dbf
3 changed files with 30 additions and 20 deletions
@@ -246,6 +246,17 @@
}
};
/**
* @function isSelectedCard
* @memberof AddressBook.prototype
* @desc Check if the specified card is selected.
* @param {string} CardId
* @returns true if the specified card is selected
*/
AddressBook.prototype.isSelectedCard = function(cardId) {
return this.selectedCard == cardId;
};
/**
* @function $selectedCount
* @memberof AddressBook.prototype