diff --git a/css/contacts.css b/css/contacts.css index c5734db7..c2cd42f8 100644 --- a/css/contacts.css +++ b/css/contacts.css @@ -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; } } diff --git a/js/app.js b/js/app.js index bc219921..003af3c5 100644 --- a/js/app.js +++ b/js/app.js @@ -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; };