2011-01-21 20:29:19 -05:00
|
|
|
NEWSBLUR.generate_bookmarklet = function() {
|
2011-01-22 18:25:16 -05: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 = '(Adding...) ' + d.title; z.setAttribute('src',l.protocol+'//"+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
|
2011-02-25 15:20:38 -05:00
|
|
|
}, 'Subscribe in NewsBlur');
|
2011-01-21 20:29:19 -05:00
|
|
|
|
|
|
|
return $bookmarklet;
|
|
|
|
};
|