diff options
-rw-r--r-- | js/util.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/js/util.js b/js/util.js index f6b59ec74..00f94e5c4 100644 --- a/js/util.js +++ b/js/util.js @@ -524,6 +524,11 @@ var SN = { // StatusNet NLN.attr('href', location.url); NLN.text(NLN_text); + NLN.click(function() { + window.open(location.url); + + return false; + }); }); }); } |