commit | a95fd55db94b522c3c14842f5d3c561b54f80015 | [log] [tgz] |
---|---|---|
author | Joshua Hesketh <josh@nitrotech.org> | Thu Aug 21 11:21:05 2014 +1000 |
committer | Joshua Hesketh <josh@nitrotech.org> | Thu Aug 21 11:21:05 2014 +1000 |
tree | 7f482a6f6f4eaf22d95eff26b8dbe676eec43bd9 | |
parent | 6f94dd1d9162f05687e14b64e0916ef62a7460f2 [diff] |
Fix status page overlap If the job name was too long the progress bar would float under the next job. Fix this be clearing the flots in each job line. Change-Id: Ie476cd97ee6207fac84051e0580871590bccbc0f
diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js index 3085b26..7e5f640 100644 --- a/etc/status/public_html/jquery.zuul.js +++ b/etc/status/public_html/jquery.zuul.js
@@ -111,6 +111,7 @@ ); } + $job_line.append($('<div style="clear: both"></div>')); return $job_line; },