TheTvDb link is now an icon on AddSeries.

This commit is contained in:
Mark McDowall
2012-03-03 10:58:32 -08:00
parent 692f182b5e
commit 0ba781fd32
4 changed files with 9 additions and 2 deletions
+7 -1
View File
@@ -39,6 +39,12 @@
.tvDbLink {
color: #065EFE;
background-repeat: no-repeat;
background-position: 5px center;
background-image:url('../../Content/Images/thetvdb.png');
width: 22px;
height: 20px;
float: right;
}
.tvDbLink:hover {
@@ -72,7 +78,7 @@
});
$(document).on('click', '.tvDbLink', function (event) {
var url = $(this).text();
var url = $(this).attr('rel');
window.open(url, 'thetvdb');
event.preventDefault();
});