summaryrefslogtreecommitdiff
path: root/static/js
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2011-01-04 16:29:41 -0500
committerScott Ostler <scottbot9000@gmail.com>2011-01-04 16:29:41 -0500
commit034acfa61c9f5667f11f43659c02eb9bae7e94f5 (patch)
tree823bfea30cf09ca772e9b79c00973ef6f0a61420 /static/js
parentf46044e56199750c9fbda3dec3edd1336ada98ad (diff)
topic links open in new window
Diffstat (limited to 'static/js')
-rw-r--r--static/js/pichat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js
index 7c7dd0a..884e01f 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -139,7 +139,7 @@ function getImagesAsArray(text) {
function topicReplace(text) {
text = $.trim(text).toLowerCase();
var topicLabel = text.substring(1);
- return ' <a href="http://dump.fm/t/' + topicLabel + '">' + text + '</a> ';
+ return ' <a target="_blank" href="http://dump.fm/t/' + topicLabel + '">' + text + '</a> ';
}
function recipientReplace(atText, recips) {