diff options
Diffstat (limited to '')
-rw-r--r-- | template/yoga/menubar.tpl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/template/yoga/menubar.tpl b/template/yoga/menubar.tpl index 4a2425ecd..37dcd6995 100644 --- a/template/yoga/menubar.tpl +++ b/template/yoga/menubar.tpl @@ -6,7 +6,14 @@ <dd> <ul> <!-- BEGIN link --> - <li><a href="{links.link.URL}">{links.link.LABEL}</a></li> + <li> + <a href="{links.link.URL}" + <!-- BEGIN new_window --> + onclick="window.open(this.href, ''); return false;" + <!-- END new_window --> + >{links.link.LABEL} + </a> + </li> <!-- END link --> </ul> </dd> |