Hello
There is this largest latvian social network frype.com (draugiem.lv) with over 2,000,000 users and it has a built in social messaging service similar to Twitter. I'm trying to ad it to Add-To-Any as a custom service, but it seems my javascript skills are lagging.
Here is the code provided by draugiem.lv to share link to a webpage into this messaging service -
function DraugiemSay( title, url, titlePrefix ){
window.open(
'http://www.draugiem.lv/say/ext/add.php?title=' + encodeURIComponent( title ) +
'&link=' + encodeURIComponent( url ) +
( titlePrefix ? '&titlePrefix=' + encodeURIComponent( titlePrefix ) : '' ),
'',
'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400'
);
return false;
}
Function call: DraugiemSay('Entry title', 'http://link.to/the/post)
`
icon: http://www.draugiem.lv/img/say/add.png
I hope i got everything right. Please, help.
P.S. One of my friends works there and if something needs to be changed from their side I could maybe get in touch with developers