19 lines
419 B
JavaScript
19 lines
419 B
JavaScript
/**
|
|
* @author v.lugovksy
|
|
* created on 16.12.2015
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.pages.dashboard')
|
|
.directive('dashboardCalendar', dashboardCalendar);
|
|
|
|
/** @ngInject */
|
|
function dashboardCalendar() {
|
|
return {
|
|
restrict: 'E',
|
|
controller: 'DashboardCalendarCtrl',
|
|
templateUrl: 'app/pages/dashboard/dashboardCalendar/dashboardCalendar.html'
|
|
};
|
|
}
|
|
})(); |