-
Notifications
You must be signed in to change notification settings - Fork 62
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
update showPaginator #45
base: master
Are you sure you want to change the base?
Conversation
Paginator is not hidden when style is inherited. Better to set display to 'none' explicitly.
added / to path. Otherwise, workerSrc not found if baseUrl does not end with /
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.
Thanks for the PR @robertwenink
Please check my comments. Will merge the PR once the results are confirmed.
if(hidePaginator) return | ||
paginator.style.display = 'block'; | ||
if(hidePaginator) { | ||
paginator.style.display = 'none'; |
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.
Good catch!.
Make the loading wrapper float left, such that the download button is not pushed down during loading but stays in its location.
Kudos, SonarCloud Quality Gate passed! |
@robertwenink I haven't been able to get around to verifying this PR on my demo. I will try to spend sometime soon and merge this |
Confirmed that this fix works on my domain |
Paginator is not hidden when style is inherited. Better to set display to 'none' explicitly.