Title: [159676] trunk/Tools
- Revision
- 159676
- Author
- [email protected]
- Date
- 2013-11-21 20:22:49 -0800 (Thu, 21 Nov 2013)
Log Message
Try to fix buildbot Dashboard for people who have not hidden anything.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueue.js:
Add a null check for hidden platforms.
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueue.js (159675 => 159676)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueue.js 2013-11-22 04:17:22 UTC (rev 159675)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueue.js 2013-11-22 04:22:49 UTC (rev 159676)
@@ -132,7 +132,7 @@
update: function(iterationsToLoad)
{
var hiddenPlatforms = settings.getObject("hiddenPlatforms");
- if (hiddenPlatforms.contains(this.platform))
+ if (hiddenPlatforms && hiddenPlatforms.contains(this.platform))
return;
JSON.load(this.baseURL, function(data) {
Modified: trunk/Tools/ChangeLog (159675 => 159676)
--- trunk/Tools/ChangeLog 2013-11-22 04:17:22 UTC (rev 159675)
+++ trunk/Tools/ChangeLog 2013-11-22 04:22:49 UTC (rev 159676)
@@ -1,3 +1,10 @@
+2013-11-21 Darin Adler <[email protected]>
+
+ Try to fix buildbot Dashboard for people who have not hidden anything.
+
+ * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueue.js:
+ Add a null check for hidden platforms.
+
2013-11-21 Peter Szanka <[email protected]>
Remove chrome/chromium related things from webkitpy.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes