Skip to content

Instantly share code, notes, and snippets.

@funkatron
Created December 6, 2010 17:50
Show Gist options
  • Save funkatron/730637 to your computer and use it in GitHub Desktop.
Save funkatron/730637 to your computer and use it in GitHub Desktop.
Put this in your user.js file in Spaz Desktop to filter all API RTs out
Spaz.TimelineFilters.friends.addFilter('noAPIRTs', function(d) {
if (d.retweeted_status) { // if a 4sq link is present, remove it
sch.debug('Removing '+d.id+' from results (noAPIRTs)');
d = null;
}
return d;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment