views:

17

answers:

0

I am working on a site that is triggering the privacy report symbol to appear in IE. I am using a twitter plugin that displays some of my latest tweets.

website link

I think it is this code that is triggering it, but not sure. (This code is in jquery.tools.min.js @ line 311)

function build_url() {
  var proto = ('https:' == document.location.protocol ? 'https:' : 'http:');
  if (s.list) {
    return proto+"//api.twitter.com/1/"+s.username[0]+"/lists/"+s.list+"/statuses.json?per_page="+s.count+"&callback=?";
  } else if (s.query == null && s.username.length == 1) {
    return proto+'//api.twitter.com/1/statuses/user_timeline.json?screen_name='+s.username[0]+'&count='+s.count+'&include_rts=1&callback=?';
  } else {
    var query = (s.query || 'from:'+s.username.join(' OR from:'));
    return proto+'//search.twitter.com/search.json?&q='+encodeURIComponent(query)+'&rpp='+s.count+'&callback=?';
  }
}

Does anybody know how I can get past the privacy icon showing up?

Thanks Nik