@ardimedia/angular-portal-azure 0.2.105 → 0.2.107
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 +11 -1
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -276,8 +276,16 @@ var angularportalazure;
|
|
|
276
276
|
console.log('listener1-BladeArea.AddBlade - function call: that.activate() will probably not work since this/that is not pointing to the right object. - deactivated');
|
|
277
277
|
}
|
|
278
278
|
});
|
|
279
|
-
return _this;
|
|
280
279
|
//#endregion
|
|
280
|
+
_this.portalService.bladeArea.blades.forEach(function (blade, index) {
|
|
281
|
+
if (blade.path === _this.path) {
|
|
282
|
+
console.log(blade.onActivate);
|
|
283
|
+
console.log(_this.portalService.bladeArea.blades[index].onActivate);
|
|
284
|
+
_this.portalService.bladeArea.blades[index] = _this;
|
|
285
|
+
console.log(_this.portalService.bladeArea.blades[index].onActivate);
|
|
286
|
+
}
|
|
287
|
+
});
|
|
288
|
+
return _this;
|
|
281
289
|
}
|
|
282
290
|
Object.defineProperty(Blade.prototype, "path", {
|
|
283
291
|
//#region path
|
|
@@ -483,6 +491,8 @@ var angularportalazure;
|
|
|
483
491
|
this.blades.forEach(function (blade) {
|
|
484
492
|
if (blade.path === args.path) {
|
|
485
493
|
console.log('executing: blade.onActivate();');
|
|
494
|
+
console.log(blade.activate);
|
|
495
|
+
console.log(blade);
|
|
486
496
|
blade.onActivate();
|
|
487
497
|
isActivated = true;
|
|
488
498
|
return;
|
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.107",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|