You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@airflow.apache.org by GitBox <gi...@apache.org> on 2018/07/31 21:08:56 UTC

[GitHub] ashb commented on a change in pull request #3656: [WIP][AIRFLOW-2803] Fix all ESLint issues

ashb commented on a change in pull request #3656: [WIP][AIRFLOW-2803] Fix all ESLint issues
URL: https://github.com/apache/incubator-airflow/pull/3656#discussion_r206684313
 
 

 ##########
 File path: airflow/www_rbac/templates/airflow/circles.html
 ##########
 @@ -28,117 +28,111 @@ <h1>Airflow 404 = lots of circles</h1>
     </div>
     <script src="{{ url_for_asset('d3.min.js') }}"></script>
     <script>
-    var height =700;
-    var width = document.getElementById("div_svg").offsetWidth;
-    var points = 20;
-    var matrix = [];
-    var duration = 2000;
-    var i = 0;
-    var flip = 0;
-    var colors = [
-        "#FF5A5F", "#007A87", "#7B0051", "#00D1C1", "#8CE071", "#FFB400",
-        "#FFAA91", "#B4A76C", "#9CA299", "#565A5C"
+    /* global d3 */
+
+    const height = 700;
+    const width = document.getElementById('div_svg').offsetWidth;
+    const points = 20;
+    const matrix = [];
+    const duration = 2000;
+    let i = 0;
+    let flip = 0;
+    const colors = [
+      '#FF5A5F', '#007A87', '#7B0051', '#00D1C1', '#8CE071', '#FFB400',
+      '#FFAA91', '#B4A76C', '#9CA299', '#565A5C',
     ];
 
 
     function choose(choices) {
-        var index = Math.floor(Math.random() * choices.length);
-        return choices[index];
+      const index = Math.floor(Math.random() * choices.length);
 
 Review comment:
   My JS is rusty - do `let` and `const` work across all browsers?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services