@ardimedia/angular-portal-azure 0.2.18 → 0.2.19
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 +3 -2
- package/directives/home/home.ts +3 -2
- 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: {},
|
|
@@ -992,7 +993,7 @@ var angularportalazure;
|
|
|
992
993
|
controllerAs: 'vm'
|
|
993
994
|
};
|
|
994
995
|
}
|
|
995
|
-
angular.module('angularportalazure').directive('azurePortalHome',
|
|
996
|
+
angular.module('angularportalazure').directive('azurePortalHome', azurePortalHome);
|
|
996
997
|
})(angularportalazure || (angularportalazure = {}));
|
|
997
998
|
var angularportalazure;
|
|
998
999
|
(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: {},
|
|
@@ -17,5 +18,5 @@
|
|
|
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.19",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|