Title: [188758] trunk/Tools
- Revision
- 188758
- Author
- [email protected]
- Date
- 2015-08-21 11:10:17 -0700 (Fri, 21 Aug 2015)
Log Message
Fix iteration over repositories on bot watcher's dashboard.
Patch by Jason Marcell <[email protected]> on 2015-08-21
Reviewed by Alexey Proskuryakov.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js:
(BuildbotQueueView.prototype._presentPopoverForPendingCommits): Don't reuse the same index variable.
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js (188757 => 188758)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js 2015-08-21 17:10:36 UTC (rev 188757)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js 2015-08-21 18:10:17 UTC (rev 188758)
@@ -166,8 +166,8 @@
var length = lines.length;
if (length && shouldAddDivider)
this._addDividerToPopover(content);
- for (var i = 0; i < length; ++i)
- content.appendChild(lines[i]);
+ for (var j = 0; j < length; ++j)
+ content.appendChild(lines[j]);
shouldAddDivider = shouldAddDivider || length > 0;
}
Modified: trunk/Tools/ChangeLog (188757 => 188758)
--- trunk/Tools/ChangeLog 2015-08-21 17:10:36 UTC (rev 188757)
+++ trunk/Tools/ChangeLog 2015-08-21 18:10:17 UTC (rev 188758)
@@ -1,3 +1,12 @@
+2015-08-21 Jason Marcell <[email protected]>
+
+ Fix iteration over repositories on bot watcher's dashboard.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js:
+ (BuildbotQueueView.prototype._presentPopoverForPendingCommits): Don't reuse the same index variable.
+
2015-08-20 Joonghun Park <[email protected]>
[EFL] Revise PlatformWebView ctor according to r188718
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes