소스 검색

Make jsHint happy

Gaël Métais 11 년 전
부모
커밋
84a5624eb7
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/public/scripts/resultsCtrl.js

+ 2 - 2
app/public/scripts/resultsCtrl.js

@@ -53,8 +53,8 @@ app.controller('ResultsCtrl', function ($scope) {
                 $scope.totalJSTime += node.data.time;
             }
 
-            if (node.data.timestamp < $scope.phantomasResults.metrics.domInteractive
-                && node.data.type !== 'jQuery - onDOMReady') {
+            if (node.data.timestamp < $scope.phantomasResults.metrics.domInteractive &&
+                    node.data.type !== 'jQuery - onDOMReady') {
                 $scope.inBodyDomManipulations ++;
             }