1
0
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:
echel0n 2015-01-29 14:34:39 -08:00
commit 768311c31e

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();
});