1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| /**
| * @ngdoc directive
| * @name izzyposWebApp.directive:adminPosHeader
| * @description
| * # adminPosHeader
| */
|
| angular.module('sentinelDashboardApp')
| .directive('sidebarSearch', function () {
| return {
| templateUrl: 'app/scripts/directives/sidebar/sidebar-search/sidebar-search.html',
| restrict: 'E',
| replace: true,
| scope: {
| },
| controller: function ($scope) {
| $scope.selectedMenu = 'home';
| }
| }
| });
|
|