15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
'use strict';
|
|
|
|
angular.module('adagios.sidebar', [])
|
|
|
|
.controller('SideBarCtrl', ['$scope', '$http', function ($scope, $http) {
|
|
angular.noop();
|
|
}])
|
|
|
|
.directive('adgSidebar', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: "components/sidebar/sidebar.html"
|
|
};
|
|
});
|