diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-02-11 10:03:14 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-02-11 10:03:14 +0100 |
commit | 857f21eb327828391b747f0f08f04956860b6743 (patch) | |
tree | 2cf61509e86b3542e1c193f469d11b35c6cce0ae /util/fpostit/fpostit.js | |
parent | 2984b8d5d2c0ed1c034235fe281f0279872603e4 (diff) | |
download | volse-hubzilla-857f21eb327828391b747f0f08f04956860b6743.tar.gz volse-hubzilla-857f21eb327828391b747f0f08f04956860b6743.tar.bz2 volse-hubzilla-857f21eb327828391b747f0f08f04956860b6743.zip |
fpostit by Devlon Duthied added to utils
Diffstat (limited to 'util/fpostit/fpostit.js')
-rw-r--r-- | util/fpostit/fpostit.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/util/fpostit/fpostit.js b/util/fpostit/fpostit.js new file mode 100644 index 000000000..a6c75aba8 --- /dev/null +++ b/util/fpostit/fpostit.js @@ -0,0 +1,11 @@ +javascript: (function() { + the_url = 'http://testbubble.com/fpostit.php?url=' + encodeURIComponent(window.location.href) + '&title=' + encodeURIComponent(document.title) + '&text=' + encodeURIComponent('' (window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text)); + a_funct = function() { + if (!window.open(the_url, 'fpostit', 'location=yes,links=no,scrollbars=no,toolbar=no,width=600,height=300')) location.href = the_url; + }; + if (/Firefox/.test(navigator.userAgent)) { + setTimeout(a_funct, 0) + } else { + a_funct() + } +})()
\ No newline at end of file |