@ardimedia/angular-portal-azure 0.2.4 → 0.2.6
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
|
@@ -531,7 +531,8 @@ var angularportalazure;
|
|
|
531
531
|
return;
|
|
532
532
|
}
|
|
533
533
|
var isremoved = that.blades.some(function (blade, index) {
|
|
534
|
-
|
|
534
|
+
// we do not distinguish between lower and upper case
|
|
535
|
+
if (blade.path.toLowerCase() === path.toLowerCase()) {
|
|
535
536
|
angularportalazure.Debug.write('[angularportalazure-debug] \'BladeArea.clearChild\' set bladeUrls.length to: ' + (index + 1));
|
|
536
537
|
that.blades.length = index + 1;
|
|
537
538
|
return true;
|
|
@@ -861,7 +862,7 @@ var angularportalazure;
|
|
|
861
862
|
transclude: true,
|
|
862
863
|
scope: { vm: '=vm' },
|
|
863
864
|
restrict: 'E',
|
|
864
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/blade/blade.html',
|
|
865
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
865
866
|
link: function (scope, element, attrs, controller) {
|
|
866
867
|
angularportalazure.Debug.write('[angularportalazure-debug] \'directive:azurePortalBlade.link\' called.', [this, portalService]);
|
|
867
868
|
//#region the following code makes sure, that a function scope.vm.close is available
|
|
@@ -922,7 +923,7 @@ var angularportalazure;
|
|
|
922
923
|
function azurePortalHome($window, $interpolate) {
|
|
923
924
|
return {
|
|
924
925
|
scope: { vm: '=options' },
|
|
925
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/home/home.html',
|
|
926
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/home/home.html',
|
|
926
927
|
link: function (scope, element, attrs, controller) {
|
|
927
928
|
}
|
|
928
929
|
};
|
|
@@ -934,7 +935,7 @@ var angularportalazure;
|
|
|
934
935
|
function nav($window) {
|
|
935
936
|
return {
|
|
936
937
|
scope: { vm: '=viewModel' },
|
|
937
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/nav/nav.html',
|
|
938
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
938
939
|
link: function (scope, element, attrs, controller) {
|
|
939
940
|
angular.forEach(scope.vm.navItems, function (item) {
|
|
940
941
|
// Set some default values, depending on existing values
|
|
@@ -958,7 +959,7 @@ var angularportalazure;
|
|
|
958
959
|
function navGrid($window) {
|
|
959
960
|
return {
|
|
960
961
|
scope: { vm: '=viewModel' },
|
|
961
|
-
templateUrl: '/node_modules/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
962
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/navgrid/navgrid.html',
|
|
962
963
|
link: function (scope, element, attrs, controller) {
|
|
963
964
|
angular.forEach(scope.vm.items, function (item) {
|
|
964
965
|
// 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.6",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|