mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-06 03:18:01 -05:00
correct jquery syntax to select value to fix issue #285
This commit is contained in:
parent
8b84e4f4bc
commit
e0028573e1
@ -38,7 +38,7 @@ $(document).ready(function () {
|
||||
if (epArr.length == 0)
|
||||
return false;
|
||||
|
||||
url = sbRoot + '/home/setStatus?show=' + $('#showID').attr('value') + '&eps=' + epArr.join('|') + '&status=' + $('#statusSelect').attr('value');
|
||||
url = sbRoot + '/home/setStatus?show=' + $('#showID').attr('value') + '&eps=' + epArr.join('|') + '&status=' + $('#statusSelect').val();
|
||||
window.location.href = url
|
||||
|
||||
});
|
||||
@ -268,4 +268,4 @@ $(document).ready(function () {
|
||||
height:120
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user