mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
Merge pull request #1200 from abeloin/patch-next_btn_js
Fix Safari next show button not working.
This commit is contained in:
commit
768311c31e
@ -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();
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user