1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-02-22 10:12:47 +01:00

Merge pull request #5 from lxsang/master

external link should be opened in a new tab
This commit is contained in:
Xuan Sang LE 2020-06-26 16:46:25 +02:00 committed by GitHub
commit 396f1950dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ local elinks = __main__:get("elinks")
if elinks then
for k,v in ipairs(elinks) do
?>
<a class = "x-link" href ="<?=v.url?>">
<a class = "x-link" target="_blank" href ="<?=v.url?>">
<?=v.name?>
</a>
<?lua