@ardimedia/angular-portal-azure 0.2.18 → 0.2.20
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 +4 -4
- package/directives/home/home.ts +5 -4
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -975,7 +975,8 @@ var angularportalazure;
|
|
|
975
975
|
//}
|
|
976
976
|
var angularportalazure;
|
|
977
977
|
(function (angularportalazure) {
|
|
978
|
-
function azurePortalHome(
|
|
978
|
+
function azurePortalHome() {
|
|
979
|
+
console.log('azurePortalHome');
|
|
979
980
|
return {
|
|
980
981
|
restrict: 'E',
|
|
981
982
|
scope: {},
|
|
@@ -988,11 +989,10 @@ var angularportalazure;
|
|
|
988
989
|
controller: function () {
|
|
989
990
|
console.log('azurePortalHome.controller()');
|
|
990
991
|
console.log(this);
|
|
991
|
-
}
|
|
992
|
-
controllerAs: 'vm'
|
|
992
|
+
}
|
|
993
993
|
};
|
|
994
994
|
}
|
|
995
|
-
angular.module('angularportalazure').directive('azurePortalHome',
|
|
995
|
+
angular.module('angularportalazure').directive('azurePortalHome', azurePortalHome);
|
|
996
996
|
})(angularportalazure || (angularportalazure = {}));
|
|
997
997
|
var angularportalazure;
|
|
998
998
|
(function (angularportalazure) {
|
package/directives/home/home.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
namespace angularportalazure {
|
|
2
|
-
function azurePortalHome(
|
|
2
|
+
function azurePortalHome() {
|
|
3
|
+
console.log('azurePortalHome');
|
|
3
4
|
return {
|
|
4
5
|
restrict: 'E',
|
|
5
6
|
scope: {},
|
|
@@ -12,10 +13,10 @@
|
|
|
12
13
|
controller: function () {
|
|
13
14
|
console.log('azurePortalHome.controller()');
|
|
14
15
|
console.log(this);
|
|
15
|
-
}
|
|
16
|
-
controllerAs: 'vm'
|
|
16
|
+
}
|
|
17
|
+
//controllerAs: 'vm'
|
|
17
18
|
};
|
|
18
19
|
}
|
|
19
20
|
|
|
20
|
-
angular.module('angularportalazure').directive('azurePortalHome',
|
|
21
|
+
angular.module('angularportalazure').directive('azurePortalHome', azurePortalHome);
|
|
21
22
|
}
|
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.20",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|