mirror of https://github.com/akveo/blur-admin
19 lines
425 B
JavaScript
19 lines
425 B
JavaScript
/**
|
|
* @author v.lugovksy
|
|
* created on 16.12.2015
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.pages.dashboard')
|
|
.directive('dashboardLineChart', dashboardLineChart);
|
|
|
|
/** @ngInject */
|
|
function dashboardLineChart() {
|
|
return {
|
|
restrict: 'E',
|
|
controller: 'DashboardLineChartCtrl',
|
|
templateUrl: 'app/pages/dashboard/dashboardLineChart/dashboardLineChart.html'
|
|
};
|
|
}
|
|
})(); |