Bug 12550 [QA Followup] - Make checking the checkbox load the table of checkouts
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
e44b4cbeed
commit
b4b9e0d212
1 changed files with 5 additions and 0 deletions
|
@ -128,6 +128,11 @@ $(document).ready(function() {
|
|||
|
||||
$('#issues-table').hide();
|
||||
$('#issues-table-actions').hide();
|
||||
$('#issues-table-load-immediately').change(function(){
|
||||
if ( this.checked && typeof issuesTable === 'undefined') {
|
||||
$('#issues-table-load-now-button').click();
|
||||
}
|
||||
});
|
||||
$('#issues-table-load-now-button').click(function(){
|
||||
LoadIssuesTable();
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue