Build fix for Safari 9.

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



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@203710 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Websites/perf.webkit.org/ChangeLog b/Websites/perf.webkit.org/ChangeLog
index 00b1498..dd01482 100644
--- a/Websites/perf.webkit.org/ChangeLog
+++ b/Websites/perf.webkit.org/ChangeLog
@@ -1,3 +1,10 @@
+2016-07-25  Ryosuke Niwa  <rniwa@webkit.org>
+
+        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  <rniwa@webkit.org>
 
         Perf dashboard should show the list of a pending A/B testing jobs
diff --git a/Websites/perf.webkit.org/public/v3/models/build-request.js b/Websites/perf.webkit.org/public/v3/models/build-request.js
index 1cb28ed..ff5ec60 100644
--- a/Websites/perf.webkit.org/public/v3/models/build-request.js
+++ b/Websites/perf.webkit.org/public/v3/models/build-request.js
@@ -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},