diff options
author | FChannel <> | 2021-07-31 12:10:31 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-31 12:10:31 -0700 |
commit | 4a9452985a127a53572358c3b86a425a5df616e1 (patch) | |
tree | f83f0a0ee92e8167195f06f286bff28fe892581d /static/js/posts.js | |
parent | ac288d40da3235b9382d685c9958ad167a758bcd (diff) |
removed javascript causing errors and updated readme with xmpp room
Diffstat (limited to 'static/js/posts.js')
-rw-r--r-- | static/js/posts.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/static/js/posts.js b/static/js/posts.js index 9b8a743..455e7ea 100644 --- a/static/js/posts.js +++ b/static/js/posts.js @@ -357,10 +357,3 @@ function stripTransferProtocol(value){ var re = /(https:\/\/|http:\/\/)?(www.)?/; return value.replace(re, ""); } - -function isOnion(value){ - var re = /\.onion/; - if(value.match(re) != null) - return true; - return false; -} |