-
Notifications
You must be signed in to change notification settings - Fork 108
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
Files busy signal #3973
Files busy signal #3973
Changes from 2 commits
1f0b267
2e2f011
40fd19d
fccde1f
256f33a
b008fac
40d8a10
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,13 @@ | |
<tbody> | ||
</tbody> | ||
</table> | ||
|
||
<div class="text-center text-primary" style="display:none" id="tloading-spinner"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of inline styles, we should be using the class So I think instead of the jQuery API for // API to add to remove from the classList
document.getElementById('directory-contents').classList.remove('d-none');
// API to add to the classList
document.getElementById('directory-contents').classList.add('d-none'); |
||
<div class="spinner-border"> | ||
<span class="visually-hidden">Loading...</span> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Never seen |
||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know we use hyphens in other places, but we're trying to enforce
snake_case
Ids now.