Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix is-loading bug on Filings/Reports urls with existing querystring parameters #6488

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fec/fec/static/js/modules/tables.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ DataTable_FEC.prototype.checkFromQuery = function(){
}
});

// Put 0-second, set-timeout on receipts/disbursements datatables so checkoxes are availale to check...
// Put 0-second, set-timeout on datatables with processed/raw tabs so function can run...
// ...after the two filter panels are loaded
if ('data_type' in queryFields){
setTimeout(function() {
Expand All @@ -634,6 +634,7 @@ DataTable_FEC.prototype.checkFromQuery = function(){
$(box).prop('checked', true).change(); // TODO: jQuery deprecation
}
}
$('button.is-loading, label.is-loading').removeClass('is-loading');
}, 0);

// No Set-timeout needed on datatables without two filter panels...
Expand Down