1
0
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:
renini 2014-12-27 12:52:38 +01:00
parent 8b84e4f4bc
commit e0028573e1

View File

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