mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 19:03:14 +01:00
replace eval with Function constructor to quiten rollup warning
This commit is contained in:
parent
ded5f95fcc
commit
d7bfc54c02
@ -292,7 +292,7 @@ egw.extend('open', egw.MODULE_WND_LOCAL, function(_egw, _wnd)
|
||||
var url = _link;
|
||||
if (url.indexOf('javascript:') == 0)
|
||||
{
|
||||
eval(url.substr(11));
|
||||
(new Function(url.substr(11)))();
|
||||
return;
|
||||
}
|
||||
if (url.indexOf('mailto:') == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user