diff options
author | Ugnich Anton | 2014-07-30 16:47:29 +0700 |
---|---|---|
committer | Ugnich Anton | 2014-07-30 16:47:29 +0700 |
commit | c4eebb74f520c122800c000c2329d3b6b7520c65 (patch) | |
tree | 99fa7c755ed488c4e566c9a2c14c37e079fdb9ae /web/scripts3.js | |
parent | 6856f7278584425b0cb6fc54d50f5d5cf4a3f88e (diff) |
Reader link tracking
Diffstat (limited to 'web/scripts3.js')
-rw-r--r-- | web/scripts3.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/scripts3.js b/web/scripts3.js index 3d35b441..c420dcdb 100644 --- a/web/scripts3.js +++ b/web/scripts3.js @@ -356,6 +356,13 @@ function setPrivacy(e,mid) { /******************************************************************************/ +function readerLinkReplace(e) { + var a=$(e); + a.attr('href','/_out?lid='+a.data('lid')); +} + +/******************************************************************************/ + jQuery.fn.selectText = function(){ var d = document; if (d.body.createTextRange) { |