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

Fixes contacts export function

This commit is contained in:
Jan ten Bokkel 2014-08-29 14:00:15 +02:00
parent 3a380f610a
commit 78460dd17d
2 changed files with 2 additions and 2 deletions

View File

@ -858,7 +858,7 @@ tbody tr.contact.active, tbody tr.contact:hover {
}
/* Hide some columns on smaller screens */
@media screen and (min-width: 1201px) {
@media screen and (max-width: 1400px) {
#contactlist tr td.categories { display: none; }
#contactsHeader tr td.categories { display: none; }
}

View File

@ -1175,7 +1175,7 @@ OC.notify = function(params) {
}
targets[contact.backend][contact.addressBookId].push(contact.contactId);
});
var url = OC.generateUrl('exportSelected', {t:targets});
var url = OC.generateUrl('apps/contacts/exportSelected', {t:targets});
//console.log('export url', url);
document.location.href = url;
};