Merge pull request #5851 from mallezie/addfield-organization
[civicrm-core.git] / ang / crmMailing / PreviewRecipCtrl.js
CommitLineData
6b8bd380
TO
1(function(angular, $, _) {
2
3 // Controller for the "Preview Recipients" dialog
4 // Note: Expects $scope.model to be an object with properties:
5 // - recipients: array of contacts
6 angular.module('crmMailing').controller('PreviewRecipCtrl', function($scope) {
7 $scope.ts = CRM.ts(null);
8 });
9
10})(angular, CRM.$, CRM._);