1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

Handle add group error handling

This commit is contained in:
Thomas Müller 2015-07-01 16:49:16 +02:00
parent 068afac460
commit 0660069cd3

View File

@ -552,7 +552,7 @@ OC.Contacts = OC.Contacts || {};
$editInput.removeClass('loading');
});
},
cancel: function(event) {
cancel: function() {
console.log('cancel');
$editInput.removeClass('loading');
},
@ -656,7 +656,7 @@ OC.Contacts = OC.Contacts || {};
}
} else {
if(typeof cb === 'function') {
cb({error:true, message:response.data.message});
cb({error:true, message:response.message});
}
}
})
@ -669,7 +669,6 @@ OC.Contacts = OC.Contacts || {};
GroupList.prototype.loadGroups = function(cb) {
var self = this;
var acceptdrop = '.dragContact';
var $groupList = this.$groupList;
var tmpl = this.$groupListItemTemplate;
var $elem;