summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Hesketh <josh@nitrotech.org>2014-08-21 11:21:05 +1000
committerJoshua Hesketh <josh@nitrotech.org>2014-08-21 11:21:05 +1000
commita95fd55db94b522c3c14842f5d3c561b54f80015 (patch)
tree7f482a6f6f4eaf22d95eff26b8dbe676eec43bd9
parent6f94dd1d9162f05687e14b64e0916ef62a7460f2 (diff)
downloadzuul-a95fd55db94b522c3c14842f5d3c561b54f80015.tar.gz
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
-rw-r--r--etc/status/public_html/jquery.zuul.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js
index 3085b2601..7e5f640b3 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;
},