mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 01:54:26 +02:00
Move files from util to mods
- Move local.config.vagrant.php - Move fpostit - Move bookmarklet-share2friendica - Updated Readme file
This commit is contained in:
parent
b42760b0e6
commit
c0b3b73c88
10 changed files with 37 additions and 32 deletions
11
mods/fpostit/fpostit.js
Normal file
11
mods/fpostit/fpostit.js
Normal file
|
@ -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()
|
||||
}
|
||||
})()
|
Loading…
Add table
Add a link
Reference in a new issue