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

Fix adding contact inline.

This commit is contained in:
Thomas Tanghus 2013-09-14 18:35:25 +02:00
parent 2aaf58ca78
commit 9450436336

View File

@ -981,7 +981,6 @@ OC.Contacts = OC.Contacts || {
self.currentid = 'new'; self.currentid = 'new';
// Properties that the contact doesn't know // Properties that the contact doesn't know
console.log('addContact, groupid', self.currentgroup); console.log('addContact, groupid', self.currentgroup);
self.$contactList.addClass('dim');
var groupprops = { var groupprops = {
favorite: false, favorite: false,
groups: self.groups.categories, groups: self.groups.categories,
@ -989,9 +988,9 @@ OC.Contacts = OC.Contacts || {
}; };
self.$firstRun.hide(); self.$firstRun.hide();
self.$contactList.show(); self.$contactList.show();
self.$contactList.addClass('dim');
self.tmpcontact = self.contacts.addContact(groupprops); self.tmpcontact = self.contacts.addContact(groupprops);
self.$rightContent.prepend(self.tmpcontact); self.tmpcontact.prependTo(self.$contactList.find('tbody')).show();
self.$rightContent.scrollTop(0);
self.hideActions(); self.hideActions();
}; };