Private GIT

Skip to content
Snippets Groups Projects
Commit b160c133 authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Make the expand button hide itself once it's clicked

parent 4a5a25a7
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@ $(document).ready(function() {
var row_class = $('#row_class').val();
var row = ' <tr class="'+row_class+'">';
var row = '';
row += ' <tr class="'+row_class+'">';
row += ' <td><input type="checkbox" class="'+tvdb_id+'-epcheck" name="'+tvdb_id+'-'+season+'x'+episode+'"'+checked+'></td>';
row += ' <td>'+season+'x'+episode+'</td>';
row += ' <td style="width: 100%">'+name+'</td>';
......@@ -40,7 +41,7 @@ $(document).ready(function() {
});
});
});
$(this).attr('disabled','disabled');
$(this).hide();
});
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment