Przeglądaj źródła

Sort global variables alphabetically

Gaël Métais 10 lat temu
rodzic
commit
022019bffd
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      app/public/scripts/resultsCtrl.js

+ 4 - 0
app/public/scripts/resultsCtrl.js

@@ -12,6 +12,10 @@ app.controller('ResultsCtrl', function ($scope) {
         // Get the execution tree from the offenders
         $scope.javascript = JSON.parse($scope.phantomasResults.offenders.javascriptExecutionTree);
 
+        // Sort globalVariables offenders alphabetically
+        $scope.phantomasResults.offenders.globalVariables.sort();
+
+
         initSummaryView();
         initExecutionView();
         initMetricsView();