diff --git a/static/js/utils.js b/static/js/utils.js index f5d9590f..a94bed6c 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -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); + } } };