diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-25 03:22:16 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-25 03:22:16 -0400 |
commit | 2c4312012995aa3411cf5e5dbd0eb934a0801797 (patch) | |
tree | 5f46db59a7c9101623d6fed08f09579891763f73 /view/theme/dispy/fpostit/fpostit.js | |
parent | 84686a26986e4d57093e48523b444dcd4f17c392 (diff) | |
download | volse-hubzilla-2c4312012995aa3411cf5e5dbd0eb934a0801797.tar.gz volse-hubzilla-2c4312012995aa3411cf5e5dbd0eb934a0801797.tar.bz2 volse-hubzilla-2c4312012995aa3411cf5e5dbd0eb934a0801797.zip |
dispy-dark not experimental. start implementing fpostit
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'view/theme/dispy/fpostit/fpostit.js')
-rwxr-xr-x | view/theme/dispy/fpostit/fpostit.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/view/theme/dispy/fpostit/fpostit.js b/view/theme/dispy/fpostit/fpostit.js new file mode 100755 index 000000000..d18f5d345 --- /dev/null +++ b/view/theme/dispy/fpostit/fpostit.js @@ -0,0 +1,14 @@ +javascript: (function() { + the_url = 'view/theme/dispy/fpostit/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(); + } + })();" |