https://bugs.webkit.org/show_bug.cgi?id=150782
Reviewed by Darin Adler.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueView.js:
(BubbleQueueView.prototype._popoverContentForBubbleQueue):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@191866
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
this._addBotsHeadingToPopover(queue, content);
this._addDividerToPopover(content);
- var bots = queue.bots;
+ var bots = queue.bots.slice(0).sort(function(a, b) { return (a.id < b.id) ? -1 : 1; });
for (var i = 0, end = bots.length; i < end; ++i) {
var bot = bots[i];
+2015-11-01 Alexey Proskuryakov <ap@apple.com>
+
+ Sort EWS bots in popovers
+ https://bugs.webkit.org/show_bug.cgi?id=150782
+
+ Reviewed by Darin Adler.
+
+ * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueView.js:
+ (BubbleQueueView.prototype._popoverContentForBubbleQueue):
+
2015-10-31 Filip Pizlo <fpizlo@apple.com>
B3::reduceStrength's DCE should be more agro and less wrong