
Conflicts: app/index.html app/navbar/navbar.js app/sidebar/sidebar.js app/topbar/topbar.css app/topbar/topbar.html
16 lines
365 B
JavaScript
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"
|
|
};
|
|
});
|