CRM-13823 - Switch statusPage to use tabbed interface
[civicrm-core.git] / ang / crmStatusPage / crmSnoozeOption.js
1 // creates a directive for the snooze options page
2
3 (function(angular, $, _) {
4 angular.module('statuspage').directive('crmSnoozeOptions', function(statuspageSeverityList) {
5 return {
6 templateUrl: '~/statuspage/SnoozeOptions.html',
7 transclude: true,
8 link: function(scope, element, attr) {
9 scope.severityList = statuspageSeverityList;
10 }
11 };
12 });
13 })(angular, CRM.$, CRM._);