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

add tooltip for errors on job history page #314

Open
mikeTWC1984 opened this issue Jul 20, 2020 · 0 comments
Open

add tooltip for errors on job history page #314

mikeTWC1984 opened this issue Jul 20, 2020 · 0 comments

Comments

@mikeTWC1984
Copy link

Just a small nice change. I think if there are many errors on the history page tooltip would be very useful.
Basically just need add title attribute to display job description.
<span class="color_label red" title="${job.description}">

Default tooltip is slow and ugly though. I'm not sure if your current css includes any tooltip style. If not the jquery UI can be used (it's overwrites default title attribute, so it's kind of easy to attach).

image

code to add in the html body:

<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
	$( function() { $(document).tooltip({show: null});} );
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant