@ardimedia/angular-portal-azure 0.2.4 → 0.2.5
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
CHANGED
|
@@ -861,7 +861,7 @@ var angularportalazure;
|
|
|
861
861
|
transclude: true,
|
|
862
862
|
scope: { vm: '=vm' },
|
|
863
863
|
restrict: 'E',
|
|
864
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/blade/blade.html',
|
|
864
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
865
865
|
link: function (scope, element, attrs, controller) {
|
|
866
866
|
angularportalazure.Debug.write('[angularportalazure-debug] \'directive:azurePortalBlade.link\' called.', [this, portalService]);
|
|
867
867
|
//#region the following code makes sure, that a function scope.vm.close is available
|
|
@@ -922,7 +922,7 @@ var angularportalazure;
|
|
|
922
922
|
function azurePortalHome($window, $interpolate) {
|
|
923
923
|
return {
|
|
924
924
|
scope: { vm: '=options' },
|
|
925
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/home/home.html',
|
|
925
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/home/home.html',
|
|
926
926
|
link: function (scope, element, attrs, controller) {
|
|
927
927
|
}
|
|
928
928
|
};
|
|
@@ -934,7 +934,7 @@ var angularportalazure;
|
|
|
934
934
|
function nav($window) {
|
|
935
935
|
return {
|
|
936
936
|
scope: { vm: '=viewModel' },
|
|
937
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/nav/nav.html',
|
|
937
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
938
938
|
link: function (scope, element, attrs, controller) {
|
|
939
939
|
angular.forEach(scope.vm.navItems, function (item) {
|
|
940
940
|
// Set some default values, depending on existing values
|
|
@@ -958,7 +958,7 @@ var angularportalazure;
|
|
|
958
958
|
function navGrid($window) {
|
|
959
959
|
return {
|
|
960
960
|
scope: { vm: '=viewModel' },
|
|
961
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
961
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
962
962
|
link: function (scope, element, attrs, controller) {
|
|
963
963
|
angular.forEach(scope.vm.items, function (item) {
|
|
964
964
|
// Set some default values, depending on existing values
|
|
@@ -8,7 +8,7 @@ namespace angularportalazure {
|
|
|
8
8
|
transclude: true,
|
|
9
9
|
scope: { vm: '=vm' },
|
|
10
10
|
restrict: 'E',
|
|
11
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/blade/blade.html',
|
|
11
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
12
12
|
link: function (scope, element, attrs, controller) {
|
|
13
13
|
angularportalazure.Debug.write('[angularportalazure-debug] \'directive:azurePortalBlade.link\' called.', [this, portalService]);
|
|
14
14
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<h1 class="fxs-panorama-title fxs-pannable">{{vm.title}}</h1>
|
|
8
8
|
<div class="fxs-avatarmenu-target fxs-avatarmenu" ng-class="{collapsed: !vm.portalService.panorama.startboard.tiles.showTiles}">
|
|
9
9
|
<a class="fxs-avatarmenu-header" href="/Account/Manage">
|
|
10
|
-
<img alt="" src="/node_modules/angular-portal-azure/images/avatar.jpg" />
|
|
10
|
+
<img alt="" src="/node_modules/@ardimedia/angular-portal-azure/images/avatar.jpg" />
|
|
11
11
|
<div class="fxs-avatarmenu-username">{{vm.user.name}}</div>
|
|
12
12
|
<div class="fxs-avatarmenu-emailaddresse">{{vm.user.emailaddress}}</div>
|
|
13
13
|
</a>
|
package/directives/home/home.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
function azurePortalHome($window, $interpolate) {
|
|
3
3
|
return {
|
|
4
4
|
scope: { vm: '=options' },
|
|
5
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/home/home.html',
|
|
5
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/home/home.html',
|
|
6
6
|
link: function (scope, element, attrs, controller) {
|
|
7
7
|
}
|
|
8
8
|
};
|
package/directives/nav/nav.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
function nav($window) {
|
|
3
3
|
return {
|
|
4
4
|
scope: { vm: '=viewModel' },
|
|
5
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/nav/nav.html',
|
|
5
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
6
6
|
link: function (scope, element, attrs, controller) {
|
|
7
7
|
angular.forEach(scope.vm.navItems, function (item) {
|
|
8
8
|
// Set some default values, depending on existing values
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
function navGrid($window) {
|
|
3
3
|
return {
|
|
4
4
|
scope: { vm: '=viewModel' },
|
|
5
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
5
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
6
6
|
link: function (scope, element, attrs, controller) {
|
|
7
7
|
angular.forEach(scope.vm.items, function (item) {
|
|
8
8
|
// Set some default values, depending on existing values
|
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.5",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|