@ardimedia/angular-portal-azure 0.2.13 → 0.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apn.js +6 -0
- package/directives/blade/blade.ts +3 -0
- package/directives/nav/nav.ts +2 -0
- package/directives/navgrid/navgrid.ts +2 -0
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -905,6 +905,7 @@ var angularportalazure;
|
|
|
905
905
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
906
906
|
link: function (scope, element, attrs, controller) {
|
|
907
907
|
console.log('azurePortalBlade.link()');
|
|
908
|
+
console.log(this);
|
|
908
909
|
//#region the following code makes sure, that a function scope.vm.close is available
|
|
909
910
|
if (scope.vm === undefined) {
|
|
910
911
|
scope.vm = {};
|
|
@@ -919,6 +920,7 @@ var angularportalazure;
|
|
|
919
920
|
},
|
|
920
921
|
controller: function () {
|
|
921
922
|
console.log('azurePortalBlade.controller()');
|
|
923
|
+
console.log(this);
|
|
922
924
|
this.blade = this.vm.blade;
|
|
923
925
|
this.contentTitle = this.vm.contentTitle;
|
|
924
926
|
this.contentSubTitle = this.vm.contentSubTitle;
|
|
@@ -993,6 +995,7 @@ var angularportalazure;
|
|
|
993
995
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
994
996
|
link: function (scope, element, attrs, controller) {
|
|
995
997
|
console.log('nav.link()');
|
|
998
|
+
console.log(this);
|
|
996
999
|
angular.forEach(scope.vm.navItems, function (item) {
|
|
997
1000
|
// Set some default values, depending on existing values
|
|
998
1001
|
if (item.isVisible == undefined) {
|
|
@@ -1008,6 +1011,7 @@ var angularportalazure;
|
|
|
1008
1011
|
},
|
|
1009
1012
|
controller: function () {
|
|
1010
1013
|
console.log('nav.controller()');
|
|
1014
|
+
console.log(this);
|
|
1011
1015
|
},
|
|
1012
1016
|
controllerAs: 'vm'
|
|
1013
1017
|
};
|
|
@@ -1024,6 +1028,7 @@ var angularportalazure;
|
|
|
1024
1028
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
1025
1029
|
link: function (scope, element, attrs, controller) {
|
|
1026
1030
|
console.log('navGrid.link()');
|
|
1031
|
+
console.log(this);
|
|
1027
1032
|
angular.forEach(scope.vm.items, function (item) {
|
|
1028
1033
|
// Set some default values, depending on existing values
|
|
1029
1034
|
if (item.isVisible == undefined) {
|
|
@@ -1039,6 +1044,7 @@ var angularportalazure;
|
|
|
1039
1044
|
},
|
|
1040
1045
|
controller: function () {
|
|
1041
1046
|
console.log('navGrid.controller()');
|
|
1047
|
+
console.log(this);
|
|
1042
1048
|
},
|
|
1043
1049
|
controllerAs: 'vm'
|
|
1044
1050
|
};
|
|
@@ -12,6 +12,7 @@ namespace angularportalazure {
|
|
|
12
12
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
13
13
|
link: function (scope, element, attrs, controller) {
|
|
14
14
|
console.log('azurePortalBlade.link()');
|
|
15
|
+
console.log(this);
|
|
15
16
|
//#region the following code makes sure, that a function scope.vm.close is available
|
|
16
17
|
|
|
17
18
|
if (scope.vm === undefined) { scope.vm = {}; }
|
|
@@ -26,6 +27,8 @@ namespace angularportalazure {
|
|
|
26
27
|
},
|
|
27
28
|
controller: function () {
|
|
28
29
|
console.log('azurePortalBlade.controller()');
|
|
30
|
+
console.log(this);
|
|
31
|
+
|
|
29
32
|
this.blade = this.vm.blade;
|
|
30
33
|
this.contentTitle = this.vm.contentTitle;
|
|
31
34
|
this.contentSubTitle = this.vm.contentSubTitle;
|
package/directives/nav/nav.ts
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
8
8
|
link: function (scope, element, attrs, controller) {
|
|
9
9
|
console.log('nav.link()');
|
|
10
|
+
console.log(this);
|
|
10
11
|
angular.forEach(scope.vm.navItems, function (item) {
|
|
11
12
|
// Set some default values, depending on existing values
|
|
12
13
|
if (item.isVisible == undefined) { item.isVisible = true; }
|
|
@@ -16,6 +17,7 @@
|
|
|
16
17
|
},
|
|
17
18
|
controller: function () {
|
|
18
19
|
console.log('nav.controller()');
|
|
20
|
+
console.log(this);
|
|
19
21
|
},
|
|
20
22
|
controllerAs: 'vm'
|
|
21
23
|
};
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
8
8
|
link: function (scope, element, attrs, controller) {
|
|
9
9
|
console.log('navGrid.link()');
|
|
10
|
+
console.log(this);
|
|
10
11
|
angular.forEach(scope.vm.items, function (item) {
|
|
11
12
|
// Set some default values, depending on existing values
|
|
12
13
|
if (item.isVisible == undefined) { item.isVisible = true; }
|
|
@@ -16,6 +17,7 @@
|
|
|
16
17
|
},
|
|
17
18
|
controller: function () {
|
|
18
19
|
console.log('navGrid.controller()');
|
|
20
|
+
console.log(this);
|
|
19
21
|
},
|
|
20
22
|
controllerAs: 'vm'
|
|
21
23
|
};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ardimedia/angular-portal-azure",
|
|
3
3
|
"description": "Angular Portal Azure - GUI Framework.",
|
|
4
4
|
"author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.14",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|