Fixing missing semicolon to pass stylecheck
authorNikki Murray <nikki.liz.murray@gmail.com>
Wed, 14 Oct 2015 17:26:19 +0000 (13:26 -0400)
committerNikki Murray <nikki.liz.murray@gmail.com>
Wed, 14 Oct 2015 17:26:19 +0000 (13:26 -0400)
ang/crmStatusPage/StatusPageCtrl.js
ang/crmStatusPage/StatusPageServices.js

index 79c30b3523596deb690b4390744f6bb149c94aac..818f0d523de0e92e7634f0efccc1b8e19d4abb6d 100644 (file)
@@ -11,7 +11,7 @@
     $scope.path = $location.path();
     $scope.navigator = crmNavigator;
     $scope.statuses = statuses;
-    console.log(preferences)
+    console.log(preferences);
     $scope.preferences = preferences;
 
     // will "hush" a status - gets the severity level of the status that is being hushed, and hushes all alerts for that check at and below the level of the current check
index fe86fc8266093591a121f78061f52eebcdbd318f..9926228688577bb624cdb8c829f9745c8fc680fc 100644 (file)
@@ -24,7 +24,7 @@
   angular.module('statuspage').service('statuspageGetStatuses', function(crmApi, statuspageSeverityList) {
     return function(apiFilter) {
       return crmApi('System', 'check', apiFilter)
-        .catch(function(obj){console.log(obj)})
+        .catch(function(obj){console.log(obj)});
         .then(function(apiResults){
           _.each(apiResults.values, function(status){
             status.severity_id = status.severity;
@@ -36,8 +36,8 @@
             };
           });
           return apiResults;
-        })
-      }
+        });
+      };
   });
 
   angular.module('statuspage').service('statuspageGetPreferences', function(crmApi) {