diff options
author | friendica <info@friendica.com> | 2012-02-11 01:25:21 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-11 01:25:21 -0800 |
commit | 1d5f1723e0a9100783f3999c49c1d60c4ad69541 (patch) | |
tree | 84c49b4b69a3a8ab39266d94425d6c4194e75936 /util/fpostit/fpostit.js | |
parent | 75a62db9c5e59adbd1d8dc2d5e0ba3544df3a15e (diff) | |
parent | 857f21eb327828391b747f0f08f04956860b6743 (diff) | |
download | volse-hubzilla-1d5f1723e0a9100783f3999c49c1d60c4ad69541.tar.gz volse-hubzilla-1d5f1723e0a9100783f3999c49c1d60c4ad69541.tar.bz2 volse-hubzilla-1d5f1723e0a9100783f3999c49c1d60c4ad69541.zip |
Merge branch 'pull'
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 |