drupal-civicrm/sites/all/modules/civicrm/ang/crmMailing/PreviewComponentDialogCtrl.js
2018-01-14 13:10:16 +00:00

14 lines
411 B
JavaScript

(function(angular, $, _) {
// Controller for the "Preview Mailing Component" dialog
// Note: Expects $scope.model to be an object with properties:
// - "name"
// - "subject"
// - "body_html"
// - "body_text"
angular.module('crmMailing').controller('PreviewComponentDialogCtrl', function PreviewComponentDialogCtrl($scope) {
$scope.ts = CRM.ts(null);
});
})(angular, CRM.$, CRM._);