Style changes for AddSeries lookup.

This commit is contained in:
Mark McDowall
2012-03-02 20:28:40 -08:00
parent 1dcc323c48
commit 692f182b5e
2 changed files with 3 additions and 3 deletions
+2 -1
View File
@@ -71,9 +71,10 @@
$('#addSeriesAccordion').accordion("activate", false);
});
$(document).on('click', '.tvDbLink', function () {
$(document).on('click', '.tvDbLink', function (event) {
var url = $(this).text();
window.open(url, 'thetvdb');
event.preventDefault();
});
</script>
}