New: Link to TheTvDb has been added to AddSeries series lookup fields.

This commit is contained in:
Mark McDowall
2012-03-02 20:21:50 -08:00
parent de1d095b8d
commit 1dcc323c48
4 changed files with 16 additions and 2 deletions
+12 -1
View File
@@ -37,8 +37,14 @@
overflow-x: hidden;
}
.tvDbLink {
color: #065EFE;
}
.tvDbLink:hover {
cursor: pointer;
text-decoration: underline;
}
</style>
}
@@ -64,5 +70,10 @@
$(document).ready(function () {
$('#addSeriesAccordion').accordion("activate", false);
});
$(document).on('click', '.tvDbLink', function () {
var url = $(this).text();
window.open(url, 'thetvdb');
});
</script>
}