1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00

Contacts: Use anchor instead of parameter.

This commit is contained in:
Thomas Tanghus 2013-01-25 19:01:40 +01:00
parent 860073502f
commit a55c50fd73

View File

@ -81,7 +81,7 @@ var openContact = function(id) {
if(typeof OC.Contacts !== 'undefined') {
OC.Contacts.openContact(id);
} else {
window.location.href = OC.linkTo('contacts', 'index.php') + '?id=' + id;
window.location.href = OC.linkTo('contacts', 'index.php') + '#' + id;
}
};