commit 7e01a2fc74577a5f7a10f65b40770e9971f3cda2
parent 7cae7a0b7bcd7fe96a28839e13ef09d1691b925a
Author: Sergej Orlov <wladimirych@gmail.com>
Date: Fri, 16 Nov 2018 09:52:13 +0100
do not open new page for mailto link #171
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
@@ -63,7 +63,7 @@ function setUp() {
new L.Control.Caption(`
<a href="https://nakarte-me.blogspot.com/p/blog-page.html">Documentation</a> |
<a href="${config.newsUrl}">News</a> |
- <a href="mailto:${config.email}">nakarte@nakarte.me</a> `, {
+ <a href="mailto:${config.email}" target="_self">nakarte@nakarte.me</a> `, {
position: 'topleft'
}
).addTo(map);