1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| 'use strict';
|
| /**
| * @ngdoc directive
| * @name izzyposWebApp.directive:adminPosHeader
| * @description
| * # adminPosHeader
| */
| angular.module('sbAdminApp')
| .directive('stats',function() {
| return {
| templateUrl:'assets/xsbadmin/directives/dashboard/stats/stats.html',
| restrict:'E',
| replace:true,
| scope: {
| 'model': '=',
| 'comments': '@',
| 'number': '@',
| 'name': '@',
| 'colour': '@',
| 'details':'@',
| 'type':'@',
| 'goto':'@'
| }
|
| }
| });
|
|