Added: Sync contacts tags

Fixed: IMAP search
This commit is contained in:
RainLoop Team 2014-05-14 19:58:04 +04:00
parent e88c41c90a
commit 79e686f412
14 changed files with 28963 additions and 29048 deletions

View file

@ -9,7 +9,7 @@ ko.bindingHandlers.tooltip = {
sClass = $oEl.data('tooltip-class') || '',
sPlacement = $oEl.data('tooltip-placement') || 'top'
;
$oEl.tooltip({
'delay': {
'show': 500,
@ -826,4 +826,3 @@ ko.observable.fn.validateFunc = function (fFunc)
return this;
};

View file

@ -1742,4 +1742,4 @@ Utils.detectDropdownVisibility = _.debounce(function () {
Globals.dropdownVisibility(!!_.find(BootstrapDropdowns, function (oItem) {
return oItem.hasClass('open');
}));
}, 50);
}, 50);

View file

@ -735,8 +735,9 @@ PopupsContactsViewModel.prototype.onHide = function ()
this.currentContact(null);
this.emptySelection(true);
this.search('');
_.each(this.contacts(), function (oItem) {
oItem.checked(false);
});
this.contactsCount(0);
this.contacts([]);
// _.each(this.contacts(), function (oItem) {
// oItem.checked(false);
// });
};