Fix Safari next show button not working.

See SiCKRAGETV/sickrage-issues#436 for more info
This commit is contained in:
Alexandre Beloin 2015-01-18 23:10:17 -05:00
parent 91cb8d885c
commit 0f9e729b7c
1 changed files with 2 additions and 2 deletions

View File

@ -14,12 +14,12 @@ $(document).ready(function () {
});
$("#prevShow").click(function () {
$('#pickShow option:selected').prev('option').attr('selected', 'selected');
$('#pickShow option:selected').prev('option').prop('selected', 'selected');
$("#pickShow").change();
});
$("#nextShow").click(function () {
$('#pickShow option:selected').next('option').attr('selected', 'selected');
$('#pickShow option:selected').next('option').prop('selected', 'selected');
$("#pickShow").change();
});