mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 14:55:07 -05:00
Fix Safari next show button not working.
See SiCKRAGETV/sickrage-issues#436 for more info
This commit is contained in:
parent
91cb8d885c
commit
0f9e729b7c
@ -14,12 +14,12 @@ $(document).ready(function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#prevShow").click(function () {
|
$("#prevShow").click(function () {
|
||||||
$('#pickShow option:selected').prev('option').attr('selected', 'selected');
|
$('#pickShow option:selected').prev('option').prop('selected', 'selected');
|
||||||
$("#pickShow").change();
|
$("#pickShow").change();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#nextShow").click(function () {
|
$("#nextShow").click(function () {
|
||||||
$('#pickShow option:selected').next('option').attr('selected', 'selected');
|
$('#pickShow option:selected').next('option').prop('selected', 'selected');
|
||||||
$("#pickShow").change();
|
$("#pickShow").change();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user