bansho/app/sidebar/sidebar.js
Hugo Soucy 951d35e945 Merge branch 'master' of github.com:titilambert/adagios-frontend
Conflicts:
	app/index.html
	app/navbar/navbar.js
	app/sidebar/sidebar.js
	app/topbar/topbar.css
	app/topbar/topbar.html
2015-01-22 14:19:10 -05:00

16 lines
365 B
JavaScript

'use strict';
angular.module('adagios.sidebar', [])
.controller('SideBarCtrl', ['$scope', '$http', function ($scope, $http) {
return;
}])
.directive('sidebar', function () {
return {
restrict: 'E',
templateUrl: "sidebar/sidebar.html"
};
});