diff --git a/webclient/index.html b/webclient/index.html index f5a21157..87677ded 100755 --- a/webclient/index.html +++ b/webclient/index.html @@ -141,8 +141,13 @@ Loading cockatrice web client... $(div).find("[href]").each(function() { var attributeValue = $(this).attr('href'); for(var protocol in hrefWhitelist) - if(attributeValue.indexOf(hrefWhitelist[protocol]) == 0) - return; + { + if(attributeValue.indexOf(hrefWhitelist[protocol]) == 0) + { + $(this).attr('target', '_blank'); + return; + } + } $(this).removeAttr('href'); }); @@ -311,7 +316,6 @@ Loading cockatrice web client... $('#buddies').empty(); $.each(data.buddyList, function(key, value) { - debugger; $('#buddies').append('
  • ' + value.name + '
  • '); }); $("#buddies").selectable();