Title: [203710] trunk/Websites/perf.webkit.org
Revision
203710
Author
[email protected]
Date
2016-07-25 20:04:23 -0700 (Mon, 25 Jul 2016)

Log Message

Build fix for Safari 9.

* public/v3/models/build-request.js:
(BuildRequest.prototype.waitingTime): Don't use "const" in strict mode.

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (203709 => 203710)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-07-26 02:45:13 UTC (rev 203709)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-07-26 03:04:23 UTC (rev 203710)
@@ -1,3 +1,10 @@
+2016-07-25  Ryosuke Niwa  <[email protected]>
+
+        Build fix for Safari 9.
+
+        * public/v3/models/build-request.js:
+        (BuildRequest.prototype.waitingTime): Don't use "const" in strict mode.
+
 2016-07-23  Ryosuke Niwa  <[email protected]>
 
         Perf dashboard should show the list of a pending A/B testing jobs

Modified: trunk/Websites/perf.webkit.org/public/v3/models/build-request.js (203709 => 203710)


--- trunk/Websites/perf.webkit.org/public/v3/models/build-request.js	2016-07-26 02:45:13 UTC (rev 203709)
+++ trunk/Websites/perf.webkit.org/public/v3/models/build-request.js	2016-07-26 03:04:23 UTC (rev 203710)
@@ -73,7 +73,7 @@
 
     waitingTime(referenceTime)
     {
-        const units = [
+        var units = [
             {unit: 'week', length: 7 * 24 * 3600},
             {unit: 'day', length: 24 * 3600},
             {unit: 'hour', length: 3600},
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to