Merge pull request #17283 from agh1/stop-icon-png
[civicrm-core.git] / ang / crmMailing / PreviewMailingDialogCtrl.js
1 (function(angular, $, _) {
2
3 // Controller for the "Preview Mailing" dialog
4 // Note: Expects $scope.model to be an object with properties:
5 // - "subject"
6 // - "body_html"
7 // - "body_text"
8 angular.module('crmMailing').controller('PreviewMailingDialogCtrl', function PreviewMailingDialogCtrl($scope) {
9 $scope.ts = CRM.ts(null);
10 });
11
12 })(angular, CRM.$, CRM._);