mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-08-04 14:19:23 +00:00
URLs seem to need to be unescaped.
This commit is contained in:
parent
96a4825c88
commit
e5e2002c74
@ -11,7 +11,7 @@ function Go( url ) {
|
||||
*/
|
||||
function LinkTo( tag, url ) {
|
||||
tag.style.cursor = "pointer";
|
||||
tag.setAttribute('onClick', "Go('" + url + "')");
|
||||
tag.setAttribute('onClick', "Go('" + url.replace('&','&') + "')");
|
||||
tag.setAttribute('onMouseOut', "window.status='';return true;");
|
||||
window.status = window.location.protocol + '//' + document.domain + url;
|
||||
tag.setAttribute('onMouseover', "window.status = window.location.protocol + '//' + document.domain + '" + url + "';return true;");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user