2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

fhemweb.js: fix strg open (Forum #44478) and target=_blank (Forum #49169)

git-svn-id: https://svn.fhem.de/fhem/trunk@10800 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-02-12 15:53:31 +00:00
parent 6afa85c397
commit ad132d263c

View File

@ -387,13 +387,13 @@ FW_replaceLink(el)
ma = attr.match(new RegExp("^"+FW_root)); // Avoid "Connection lost" @iOS
if(ma) {
$(el).click(function(e) {
e.preventDefault();
// Open link in window/tab, Forum #39154
if(e.shiftKey || e.ctrlKey || e.metaKey || e.button == 1)
return;
e.preventDefault();
FW_leaving = 1;
if($(el).attr("target") == "_blank") {
window.open(url, '_blank').focus();
window.open(attr, '_blank').focus();
} else {
location.href = attr;
}