bansho/app/components/sidebar/sidebar.js
2015-02-03 13:51:33 -05:00

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"
};
});