Merge pull request #19761 from MegaphoneJon/financial-169
[civicrm-core.git] / ang / crmStatusPage / StatusPageServices.js
index 6bcc28d0580e176f1b47cff6c05f0bf30934d870..e895d8979caa77e01267cf254dc9d710abd343a8 100644 (file)
@@ -1,12 +1,12 @@
 (function(angular, $, _) {
 
-  angular.module('statuspage')
+  angular.module('crmStatusPage')
     .filter('trusted', function($sce){ return $sce.trustAsHtml; })
 
     // Todo: abstract this into a generic crmUi directive?
     .directive('statuspagePopupMenu', function($timeout) {
       return {
-        templateUrl: '~/statuspage/SnoozeOptions.html',
+        templateUrl: '~/crmStatusPage/SnoozeOptions.html',
         transclude: true,
 
         link: function(scope, element, attr) {
@@ -23,7 +23,7 @@
           // TODO: Is there a more "Angular" way to do this animation?
           element.on('click', 'button:not(.hush-menu-button), li', function() {
             $(this).closest('div.crm-status-item').slideUp();
-          })
+          });
         }
       };
     });