forked from 0x2620/pandora
honor _blank
This commit is contained in:
parent
ac8c01ee98
commit
f157ebf2c4
1 changed files with 5 additions and 1 deletions
|
@ -375,7 +375,11 @@ pandora.clickLink = function(e, selectEmbed) {
|
|||
if (match) {
|
||||
(selectEmbed || pandora.$ui.textPanel.selectEmbed)(parseInt(match[1]));
|
||||
} else {
|
||||
pandora.openURL(e.target.href);
|
||||
if (e.target.target == '_blank') {
|
||||
pandora.openLink(e.target.href);
|
||||
} else {
|
||||
pandora.openURL(e.target.href);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue