2011-01-21 20:29:19 -05:00
|
|
|
NEWSBLUR.generate_bookmarklet = function() {
|
2013-11-19 00:06:27 -08:00
|
|
|
var href = "javascript:function newsblur_bookmarklet() { var d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location; try{ if(!b) { throw(0); } d.title = '(Sharing...) ' + d.title; z.setAttribute('src','https://"+NEWSBLUR.URLs['domain']+"/api/add_site_load_script/"+NEWSBLUR.Globals['secret_token']+"?url='+encodeURIComponent(l.href)+'&time='+(new Date().getTime())); b.appendChild(z); } catch(e) {alert('Please wait until the page has loaded.');}}newsblur_bookmarklet();void(0)";
|
2011-01-21 20:29:19 -05:00
|
|
|
|
|
|
|
var $bookmarklet = $.make('a', {
|
|
|
|
className: 'NB-goodies-bookmarklet-button',
|
|
|
|
href: href
|
2012-08-11 17:18:35 -07:00
|
|
|
}, 'Share on NewsBlur');
|
2011-01-21 20:29:19 -05:00
|
|
|
|
|
|
|
return $bookmarklet;
|
|
|
|
};
|