summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmMailing/PreviewRecipCtrl.js
blob: 371fb8efdd2372d552ad6c462864e5e90898e482 (plain)
1
2
3
4
5
6
7
8
9
10
(function(angular, $, _) {

  // Controller for the "Preview Recipients" dialog
  // Note: Expects $scope.model to be an object with properties:
  //   - recipients: array of contacts
  angular.module('crmMailing').controller('PreviewRecipCtrl', function($scope) {
    $scope.ts = CRM.ts(null);
  });

})(angular, CRM.$, CRM._);