1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-01-05 10:58:01 -05:00

Fix jQuery live not working with 1.9+:

Subtiles, newshow and recommandedshows
This commit is contained in:
Alexandre Beloin 2015-01-15 13:34:45 -05:00
parent 0bb84466d0
commit e11d9bbbb2
3 changed files with 5 additions and 5 deletions

View File

@ -47,10 +47,10 @@ $(document).ready(function(){
$('#editAService').change(function(){
$(this).showHideServices();
});
$('.service_enabler').live('click', function(){
$('.service_enabler').on('click', function(){
$(this).refreshServiceList();
});
});
// initialization stuff

View File

@ -216,7 +216,7 @@ $(document).ready(function () {
}
$('#rootDirText').change(updateSampleText);
$('#whichSeries').live('change', updateSampleText);
$('#searchResults').on('change', '#whichSeries', updateSampleText);
$('#nameToSearch').keyup(function (event) {
if (event.keyCode == 13) {

View File

@ -139,6 +139,6 @@ $(document).ready(function () {
}
$('#rootDirText').change(updateSampleText);
$('#whichSeries').live('change', updateSampleText);
$('#searchResults').on('change', '#whichSeries', updateSampleText);
});