Skip to content

Commit

Permalink
fix target direction
Browse files Browse the repository at this point in the history
  • Loading branch information
todaylg committed May 14, 2017
1 parent 8bb1434 commit e9daba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ function readBugumiData(day){
if(val.weekday[day]!=undefined){
$.each(val.weekday[day], function(index, el){
var html = '<li class="bangumiItem"><div class="bangumiContain">';
html += '<a class="bangumiPreview" href="'+el.url+'">';
html += '<a target="_blank" class="bangumiPreview" href="'+el.url+'">';
html += '<img src="'+el.cover+'" alt="'+el.title+'"></a>';
html += '<div class="bangumIntro">';
html += '<a href="'+el.url+'" target="_blank" title="'+el.title+'">';
Expand Down

0 comments on commit e9daba3

Please sign in to comment.