@ardimedia/angular-portal-azure 0.2.141 → 0.2.143

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.d.ts CHANGED
@@ -38,6 +38,7 @@ declare namespace angularportalazure {
38
38
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
39
39
  $scope: angular.IScope;
40
40
  portalService: angularportalazure.PortalService;
41
+ setupWindowResizeListener(callback: () => void): void;
41
42
  }
42
43
  }
43
44
  declare namespace angularportalazure {
@@ -50,6 +51,7 @@ declare var $: JQueryStatic;
50
51
  declare namespace angularportalazure {
51
52
  class Blade extends angularportalazure.UserControlBase {
52
53
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
54
+ private watcherTitle;
53
55
  private bladeContentHeight;
54
56
  bladeContentInnerHeight: number;
55
57
  private _path;
@@ -150,16 +152,19 @@ declare namespace angularportalazure {
150
152
  onCommandStop(): void;
151
153
  onCommandSwap(): void;
152
154
  /** Obsolete */
155
+ setTitle(watchExpression: string, func: () => void): void;
153
156
  private setBladeHeights();
154
157
  }
155
158
  }
156
159
  declare namespace angularportalazure {
157
- class BladeArea extends angularportalazure.UserControlBase {
160
+ class AreaBlades extends angularportalazure.UserControlBase {
158
161
  static $inject: string[];
159
162
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
160
163
  private areaBlades;
161
164
  private portalScroll;
162
- private listener1;
165
+ private addBladeListener;
166
+ private areaNotificationShowListener;
167
+ private areaNotificationHideListener;
163
168
  blades: Array<angularportalazure.Blade>;
164
169
  raiseAddBladeEvent(args: angularportalazure.IAddBladeEventArgs): void;
165
170
  setFirstBlade(path: string): angularportalazure.Blade | void;
@@ -171,9 +176,11 @@ declare namespace angularportalazure {
171
176
  clearChild(path: string): void;
172
177
  showPanoramaIfNoBlades(): void;
173
178
  hidePanorama(): void;
174
- /** We need to call this when BladeArea is no longer used, otherwise the listener does not get removed. */
179
+ /** We need to call this when AreaBlades is no longer used, otherwise the listener does not get removed. */
175
180
  close(): void;
176
- private setupResizerListener();
181
+ private setPortalScrollCss();
182
+ private setupShowHideNotificationAreaListener();
183
+ private setupAddBladeListener();
177
184
  }
178
185
  }
179
186
  declare namespace angularportalazure {
@@ -206,15 +213,15 @@ declare namespace angularportalazure {
206
213
  declare namespace angularportalazure {
207
214
  class AreaNotification extends angularportalazure.UserControlBase {
208
215
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
209
- private portalWidth;
210
- private portalHeight;
211
216
  private areaNotification;
212
217
  widthAreaUsed: number;
218
+ private _width;
213
219
  width: number;
220
+ private _backgroundColor;
214
221
  backgroundColor: string;
215
222
  hide(): void;
216
223
  show(): void;
217
- private setupResizerListener();
224
+ private calcualteCssStyles();
218
225
  }
219
226
  }
220
227
  declare namespace angularportalazure {
@@ -321,7 +328,7 @@ declare namespace angularportalazure {
321
328
  requires: any;
322
329
  portalShell: angularportalazure.PortalShell;
323
330
  panorama: angularportalazure.Panorama;
324
- bladeArea: angularportalazure.BladeArea;
331
+ areaBlades: angularportalazure.AreaBlades;
325
332
  areaNotification: angularportalazure.AreaNotification;
326
333
  ngDialog: any;
327
334
  /** obsolete - $scope is different in any view. do have one instance in a shared service is not the right approach. */
package/apn.js CHANGED
@@ -178,6 +178,18 @@ var angularportalazure;
178
178
  this.$scope = $scope;
179
179
  this.portalService = portalService;
180
180
  }
181
+ //#endregion
182
+ //#region Methods
183
+ UserControlBase.prototype.setupWindowResizeListener = function (callback) {
184
+ // http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
185
+ var id;
186
+ this.portalService.$window.addEventListener('resize', function () {
187
+ clearTimeout(id);
188
+ id = setTimeout(function () {
189
+ callback();
190
+ }, 50);
191
+ });
192
+ };
181
193
  return UserControlBase;
182
194
  }());
183
195
  angularportalazure.UserControlBase = UserControlBase;
@@ -289,7 +301,7 @@ var angularportalazure;
289
301
  if (width < 50) {
290
302
  throw new Error('[angularportalazure.Blade] constructor parameter \'width\' must be at least 50.');
291
303
  }
292
- //#region Add BladeArea.AddBlade event listener
304
+ //#region Add AreaBlades.AddBlade event listener
293
305
  /** OBSOLETE: remove when all OBSOLETE code has been removed */
294
306
  //if (portalService instanceof angularportalazure.PortalService == false) {
295
307
  // console.log('Blade.constructor: This code cannot be removed yet.')
@@ -297,22 +309,23 @@ var angularportalazure;
297
309
  //}
298
310
  /** OBSOLETE: end */
299
311
  //// Register listener1
300
- //this.listener1 = that.portalService.$rootScope.$on('BladeArea.AddBlade', function (event, args: angularportalazure.IAddBladeEventArgs) {
312
+ //this.listener1 = that.portalService.$rootScope.$on('AreaBlades.AddBlade', function (event, args: angularportalazure.IAddBladeEventArgs) {
301
313
  // if (that.comparePaths(args.path, that.path)) {
302
- // console.log('listener1-BladeArea.AddBlade - function call: that.activate() will probably not work since this/that is not pointing to the right object. - deactivated');
314
+ // console.log('listener1-AreaBlades.AddBlade - function call: that.activate() will probably not work since this/that is not pointing to the right object. - deactivated');
303
315
  // //that.activate();
304
316
  // }
305
317
  //});
306
318
  //#endregion
307
- // Set 'this.portalService.bladeArea.blades[index]' to 'this'
308
- // 'this.portalService.bladeArea.blades[index]' was generated during AddBlade
309
- _this.portalService.bladeArea.blades.forEach(function (blade, index) {
319
+ // Set 'this.portalService.areaBlades.blades[index]' to 'this'
320
+ // 'this.portalService.areaBlades.blades[index]' was generated during AddBlade
321
+ _this.portalService.areaBlades.blades.forEach(function (blade, index) {
310
322
  if (blade.path === _this.path) {
311
- _this.portalService.bladeArea.blades[index] = _this;
323
+ _this.portalService.areaBlades.blades[index] = _this;
312
324
  }
313
325
  });
314
- _this.setBladeHeights();
315
326
  return _this;
327
+ //this.setBladeHeights();
328
+ //this.setupWindowResizeListener(() => { this.setBladeHeights(); });
316
329
  }
317
330
  Object.defineProperty(Blade.prototype, "path", {
318
331
  get: function () {
@@ -377,11 +390,11 @@ var angularportalazure;
377
390
  /** close blade. */
378
391
  Blade.prototype.close = function () {
379
392
  //this.listener1(); // Unregister listener1
380
- if (this.portalService.bladeArea !== undefined) {
381
- this.portalService.bladeArea.clearPath(this.path);
393
+ if (this.portalService.areaBlades !== undefined) {
394
+ this.portalService.areaBlades.clearPath(this.path);
382
395
  }
383
396
  else {
384
- throw new Error('[angularportalazure.Blade] path: \'' + this.path + '\' could not be removed, since no \'this.portalService.bladeArea\' available.');
397
+ throw new Error('[angularportalazure.Blade] path: \'' + this.path + '\' could not be removed, since no \'this.portalService.areaBlades\' available.');
385
398
  }
386
399
  };
387
400
  //#region Set StatusBar
@@ -474,25 +487,27 @@ var angularportalazure;
474
487
  //}
475
488
  //#endregion
476
489
  //#endregion
477
- //setTitle(watchExpression: string, func: () => void) {
478
- // if (this.watcherTitle === undefined) {
479
- // this.watcherTitle = this.$scope.$watch(watchExpression, () => { func(); });
480
- // this.$scope.$on('$destroy', () => { this.watcherTitle(); });
481
- // }
482
- //}
490
+ Blade.prototype.setTitle = function (watchExpression, func) {
491
+ var _this = this;
492
+ if (this.watcherTitle === undefined) {
493
+ this.watcherTitle = this.$scope.$watch(watchExpression, function () { func(); });
494
+ this.$scope.$on('$destroy', function () { _this.watcherTitle(); });
495
+ }
496
+ };
483
497
  Blade.prototype.setBladeHeights = function () {
484
- var that = this;
485
- that.bladeContentHeight = $('.fxs-blade-content').height();
486
- that.bladeContentInnerHeight = that.bladeContentHeight - 20;
487
- // http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
488
- var id;
489
- $(window).resize(function () {
490
- clearTimeout(id);
491
- id = setTimeout(function () {
492
- that.bladeContentHeight = $('.fxs-blade-content').height();
493
- that.bladeContentInnerHeight = that.bladeContentHeight - 20;
494
- }, 500);
495
- });
498
+ console.log(this.portalService.$window.document.getElementById('apa-blade-content'));
499
+ console.log(this.portalService.$window.document.getElementById('apa-blade-content').style.height);
500
+ this.bladeContentHeight = Number(this.portalService.$window.document.getElementById('apa-blade-content').style.height.replace('px', ''));
501
+ this.bladeContentInnerHeight = this.bladeContentHeight - 20;
502
+ //// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
503
+ //var id: NodeJS.Timer;
504
+ //$(window).resize(function () {
505
+ // clearTimeout(id);
506
+ // id = setTimeout(() => {
507
+ // that.bladeContentHeight = $('.fxs-blade-content').height();
508
+ // that.bladeContentInnerHeight = that.bladeContentHeight - 20;
509
+ // }, 500);
510
+ //});
496
511
  };
497
512
  return Blade;
498
513
  }(angularportalazure.UserControlBase));
@@ -507,35 +522,33 @@ var angularportalazure;
507
522
  "use strict";
508
523
  var angularportalazure;
509
524
  (function (angularportalazure) {
510
- var BladeArea = (function (_super) {
511
- __extends(BladeArea, _super);
512
- function BladeArea($scope, portalService) {
525
+ var AreaBlades = (function (_super) {
526
+ __extends(AreaBlades, _super);
527
+ function AreaBlades($scope, portalService) {
513
528
  var _this = _super.call(this, $scope, portalService) || this;
514
529
  _this.blades = new Array();
515
530
  var that = _this;
516
- _this.areaBlades = $('#apa-blade-area');
517
- _this.portalScroll = $('#apa-portal-scroll');
531
+ _this.areaBlades = _this.portalService.$window.document.getElementById('apa-blade-area');
532
+ _this.portalScroll = _this.portalService.$window.document.getElementById('apa-portal-scroll');
518
533
  // Set dependencies
519
534
  _this.portalService = portalService;
520
- //this.portalService.bladeArea = this;
521
- //#region Add BladeArea.AddBlade event listener
535
+ //this.portalService.areaBlades = this;
536
+ //#region Add AreaBlades.AddBlade event listener
522
537
  /** OBSOLETE: remove when all OBSOLETE code has been removed */
523
- if (portalService instanceof angularportalazure.PortalService == false) {
524
- console.log('BladeArea.constructor: This code cannot be removed yet.');
525
- return _this;
526
- }
538
+ //if (portalService instanceof angularportalazure.PortalService == false) {
539
+ // console.log('AreaBlades.constructor: This code cannot be removed yet.')
540
+ // return;
541
+ //}
527
542
  /** OBSOLETE: end */
528
- // Register listener1
529
- _this.listener1 = that.portalService.$rootScope.$on('BladeArea.AddBlade', function (event, args) {
530
- that.addBlade(args.path, args.pathSender);
531
- });
532
543
  //#endregion
533
- _this.setupResizerListener();
544
+ _this.setupAddBladeListener();
545
+ _this.setupShowHideNotificationAreaListener();
546
+ _this.setupWindowResizeListener(function () { _this.setPortalScrollCss(); });
534
547
  return _this;
535
548
  }
536
549
  //#endregion
537
550
  //#region Methods
538
- BladeArea.prototype.raiseAddBladeEvent = function (args) {
551
+ AreaBlades.prototype.raiseAddBladeEvent = function (args) {
539
552
  var isBladeAlreadyShown = false;
540
553
  this.blades.forEach(function (blade) {
541
554
  if (blade.path === args.path) {
@@ -547,15 +560,15 @@ var angularportalazure;
547
560
  });
548
561
  if (!isBladeAlreadyShown) {
549
562
  // Add the blade, since it is not yet shown
550
- this.portalService.$rootScope.$broadcast('BladeArea.AddBlade', args);
563
+ this.portalService.$rootScope.$broadcast('AreaBlades.AddBlade', args);
551
564
  }
552
565
  };
553
- BladeArea.prototype.setFirstBlade = function (path) {
566
+ AreaBlades.prototype.setFirstBlade = function (path) {
554
567
  this.clearAll();
555
568
  this.hidePanorama();
556
569
  return this.addBlade(path);
557
570
  };
558
- BladeArea.prototype.addBlade = function (path, senderPath) {
571
+ AreaBlades.prototype.addBlade = function (path, senderPath) {
559
572
  if (senderPath === void 0) { senderPath = ''; }
560
573
  if (path == null) {
561
574
  return;
@@ -573,11 +586,11 @@ var angularportalazure;
573
586
  }
574
587
  if (that.portalService.$window !== undefined) {
575
588
  if (that.portalService.$window.document === undefined) {
576
- throw new Error('[angularportalazure.BladeArea] \'this.$window.document\' undefined.');
589
+ throw new Error('[angularportalazure.AreaBlades] \'this.$window.document\' undefined.');
577
590
  }
578
591
  var portalcontent = that.portalService.$window.document.getElementById('apa-portal-scroll');
579
592
  if (portalcontent === null) {
580
- throw new Error('[angularportalazure.BladeArea] HTML element with ID [apa-portal-scroll] not found. Maybe it is to early to call function \'BladeArea.addBlade\'.');
593
+ throw new Error('[angularportalazure.AreaBlades] HTML element with ID [apa-portal-scroll] not found. Maybe it is to early to call function \'BladeArea.addBlade\'.');
581
594
  }
582
595
  }
583
596
  //#endregion
@@ -588,7 +601,7 @@ var angularportalazure;
588
601
  this.blades.forEach(function (blade) {
589
602
  // we do not distinguish between lower and upper case path name
590
603
  if (blade.comparePaths(blade.path, path)) {
591
- throw new Error('[angularportalazure.BladeArea] path: \'' + path + '\' will not be added. It is already added.');
604
+ throw new Error('[angularportalazure.AreaBlades] path: \'' + path + '\' will not be added. It is already added.');
592
605
  }
593
606
  ;
594
607
  });
@@ -613,11 +626,11 @@ var angularportalazure;
613
626
  //#endregion
614
627
  return blade;
615
628
  };
616
- BladeArea.prototype.clearAll = function () {
629
+ AreaBlades.prototype.clearAll = function () {
617
630
  this.blades.length = 0;
618
631
  this.showPanoramaIfNoBlades();
619
632
  };
620
- BladeArea.prototype.clearPath = function (path) {
633
+ AreaBlades.prototype.clearPath = function (path) {
621
634
  var that = this;
622
635
  // we do not distinguish between lower and upper case path name
623
636
  path = path.toLowerCase();
@@ -628,11 +641,11 @@ var angularportalazure;
628
641
  }
629
642
  });
630
643
  if (!isremoved) {
631
- throw new Error('[angularportalazure.BladeArea.clearPath] path: \'' + path + '\' could not be removed, since path not found in bladeUrls.');
644
+ throw new Error('[angularportalazure.AreaBlades.clearPath] path: \'' + path + '\' could not be removed, since path not found in bladeUrls.');
632
645
  }
633
646
  this.showPanoramaIfNoBlades();
634
647
  };
635
- BladeArea.prototype.clearLevel = function (level) {
648
+ AreaBlades.prototype.clearLevel = function (level) {
636
649
  if (this.blades.length < level) {
637
650
  }
638
651
  if (level == 0) {
@@ -641,11 +654,11 @@ var angularportalazure;
641
654
  this.blades.length = level - 1;
642
655
  this.showPanoramaIfNoBlades();
643
656
  };
644
- BladeArea.prototype.clearLastLevel = function () {
657
+ AreaBlades.prototype.clearLastLevel = function () {
645
658
  this.clearLevel(this.blades.length);
646
659
  this.showPanoramaIfNoBlades();
647
660
  };
648
- BladeArea.prototype.clearChild = function (path) {
661
+ AreaBlades.prototype.clearChild = function (path) {
649
662
  var that = this;
650
663
  path = path.toLowerCase();
651
664
  if (path === '') {
@@ -659,10 +672,10 @@ var angularportalazure;
659
672
  }
660
673
  });
661
674
  if (!isremoved) {
662
- throw new Error('[angularportalazure.BladeArea.clearChild] path: \'' + path + '\' could not be removed, since path not found in bladeUrls.');
675
+ throw new Error('[angularportalazure.AreaBlades.clearChild] path: \'' + path + '\' could not be removed, since path not found in bladeUrls.');
663
676
  }
664
677
  };
665
- BladeArea.prototype.showPanoramaIfNoBlades = function () {
678
+ AreaBlades.prototype.showPanoramaIfNoBlades = function () {
666
679
  if (this.blades.length === 0) {
667
680
  if (this.portalService.panorama !== undefined) {
668
681
  {
@@ -671,65 +684,45 @@ var angularportalazure;
671
684
  }
672
685
  }
673
686
  };
674
- BladeArea.prototype.hidePanorama = function () {
687
+ AreaBlades.prototype.hidePanorama = function () {
675
688
  if (this.portalService.panorama !== undefined) {
676
689
  this.portalService.panorama.isVisible = false;
677
690
  }
678
691
  };
679
- /** We need to call this when BladeArea is no longer used, otherwise the listener does not get removed. */
680
- BladeArea.prototype.close = function () {
681
- this.listener1(); // Unregister listener1
692
+ /** We need to call this when AreaBlades is no longer used, otherwise the listener does not get removed. */
693
+ AreaBlades.prototype.close = function () {
694
+ // Unregister Listeners
695
+ this.addBladeListener();
696
+ this.areaNotificationShowListener();
697
+ this.areaNotificationHideListener();
682
698
  };
683
699
  //#endregion
684
- //#region OBSOLETE
685
- //addBladePath(path: string) {
686
- // // Fix issue with old code
687
- // if (this.portalService.$window === undefined) {
688
- // this.portalService.$window = <any>this.portalService;
689
- // }
690
- // this.addBlade(path);
691
- // //this.addBladeOld(path);
692
- //}
693
- //addBladeOld(path: string) {
694
- // var that = this;
695
- // if (path === undefined || path == '') { return; }
696
- // var blade = new angularportalazure.Blade(that.$scope, that.portalService, path, '');
697
- // that.blades.push(blade);
698
- // var portalcontent = that.portalService.$window.document.getElementById('apa-portal-scroll');
699
- // that.portalService.$window.setTimeout(function () {
700
- // var azureportalblades = that.portalService.$window.document.getElementsByClassName('azureportalblade');
701
- // var i = that.blades.length - 1;
702
- // // HACK: Sometime azureportalblades[i].offsetLeft is undefined.
703
- // // So now if it is, the user has to scroll on its own.
704
- // if (azureportalblades[i] !== undefined && (<any>azureportalblades[i]).offsetLeft !== undefined) {
705
- // var sl = (<any>azureportalblades[i]).offsetLeft - 30;
706
- // portalcontent.scrollLeft = sl;
707
- // }
708
- // }, 250);
709
- //}
710
- //#endregion
711
- BladeArea.prototype.setupResizerListener = function () {
700
+ AreaBlades.prototype.setPortalScrollCss = function () {
701
+ this.portalScroll.style.marginRight = this.portalService.areaNotification.widthAreaUsed + 'px';
702
+ };
703
+ AreaBlades.prototype.setupShowHideNotificationAreaListener = function () {
704
+ var _this = this;
705
+ this.areaNotificationShowListener = this.portalService.$rootScope.$on('AreaNotification.Show', function (event, args) {
706
+ _this.setPortalScrollCss();
707
+ });
708
+ this.areaNotificationHideListener = this.portalService.$rootScope.$on('AreaNotification.Hide', function (event, args) {
709
+ _this.setPortalScrollCss();
710
+ });
711
+ };
712
+ AreaBlades.prototype.setupAddBladeListener = function () {
712
713
  var that = this;
713
- that.portalScroll.css('margin-right', that.portalService.areaNotification.widthAreaUsed + 'px');
714
- console.log(that.portalScroll.css('margin-right'));
715
- // http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
716
- var id;
717
- $(window).resize(function () {
718
- clearTimeout(id);
719
- id = setTimeout(function () {
720
- that.portalScroll.css('margin-right', that.portalService.areaNotification.widthAreaUsed + 'px');
721
- console.log(that.portalScroll.css('margin-right'));
722
- }, 50);
714
+ that.addBladeListener = that.portalService.$rootScope.$on('AreaBlades.AddBlade', function (event, args) {
715
+ that.addBlade(args.path, args.pathSender);
723
716
  });
724
717
  };
725
- return BladeArea;
718
+ return AreaBlades;
726
719
  }(angularportalazure.UserControlBase));
727
720
  //#region Constructor
728
- BladeArea.$inject = ['$scope', 'angularportalazure.portalService'];
729
- angularportalazure.BladeArea = BladeArea;
730
- angular.module('angularportalazure').service('angularportalazure.bladeArea', BladeArea);
721
+ AreaBlades.$inject = ['$scope', 'angularportalazure.portalService'];
722
+ angularportalazure.AreaBlades = AreaBlades;
723
+ angular.module('angularportalazure').service('angularportalazure.areaBlades', AreaBlades);
731
724
  })(angularportalazure || (angularportalazure = {}));
732
- /// <reference path="bladearea.ts" />
725
+ /// <reference path="areablades.ts" />
733
726
  /// <reference path="debug.ts" />
734
727
  /// <reference path="portalservice.ts" />
735
728
  "use strict";
@@ -775,7 +768,7 @@ var angularportalazure;
775
768
  if (path === '') {
776
769
  return;
777
770
  }
778
- this.portalService.bladeArea.raiseAddBladeEvent({ path: path, pathSender: this.path });
771
+ this.portalService.areaBlades.raiseAddBladeEvent({ path: path, pathSender: this.path });
779
772
  };
780
773
  return BladeNav;
781
774
  }(angularportalazure.BladeData));
@@ -830,40 +823,59 @@ var angularportalazure;
830
823
  function AreaNotification($scope, portalService) {
831
824
  var _this = _super.call(this, $scope, portalService) || this;
832
825
  _this.widthAreaUsed = 0;
833
- _this.width = 250;
834
- _this.backgroundColor = '#32383f';
835
- _this.areaNotification = $('#apa-notification-area');
826
+ _this._width = 250;
827
+ _this._backgroundColor = '#32383f';
828
+ _this.areaNotification = _this.portalService.$window.document.getElementById('apa-notification-area');
836
829
  _this.hide();
837
- _this.setupResizerListener();
830
+ _this.setupWindowResizeListener(function () { _this.calcualteCssStyles(); });
838
831
  return _this;
839
832
  }
833
+ Object.defineProperty(AreaNotification.prototype, "width", {
834
+ get: function () {
835
+ return this._width;
836
+ },
837
+ set: function (value) {
838
+ this._width = value;
839
+ this.calcualteCssStyles();
840
+ },
841
+ enumerable: true,
842
+ configurable: true
843
+ });
844
+ Object.defineProperty(AreaNotification.prototype, "backgroundColor", {
845
+ get: function () {
846
+ return this._backgroundColor;
847
+ },
848
+ set: function (value) {
849
+ this._backgroundColor = value;
850
+ this.calcualteCssStyles();
851
+ },
852
+ enumerable: true,
853
+ configurable: true
854
+ });
840
855
  //#endregion
841
856
  //#region Methods
842
857
  AreaNotification.prototype.hide = function () {
843
858
  this.widthAreaUsed = 0;
844
- this.areaNotification.css('display', 'none');
859
+ this.areaNotification.style.display = 'none';
860
+ this.portalService.$rootScope.$broadcast('AreaNotification.Hide');
845
861
  };
846
862
  AreaNotification.prototype.show = function () {
847
- this.areaNotification.css('position', 'absolute');
848
- this.areaNotification.css('top:0', '0');
849
- this.areaNotification.css('height', '100%');
850
- this.areaNotification.css('background-color', this.backgroundColor);
851
- this.areaNotification.css('border-left', '2px solid gray');
852
- this.areaNotification.css('width', this.width + 'px');
853
- this.areaNotification.css('left', $(window).width() - this.width + 'px');
854
- this.widthAreaUsed = this.width;
855
- this.areaNotification.css('display', 'inline-block');
856
- };
857
- AreaNotification.prototype.setupResizerListener = function () {
858
- var that = this;
859
- // http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
860
- var id;
861
- $(window).resize(function () {
862
- clearTimeout(id);
863
- id = setTimeout(function () {
864
- that.show();
865
- }, 50);
866
- });
863
+ this.widthAreaUsed = 1; // Indicate to the calcualteCssStyles function, that we need to set this value
864
+ this.calcualteCssStyles();
865
+ this.areaNotification.style.display = 'inline-block';
866
+ this.portalService.$rootScope.$broadcast('AreaNotification.Show');
867
+ };
868
+ AreaNotification.prototype.calcualteCssStyles = function () {
869
+ this.areaNotification.style.position = 'absolute';
870
+ this.areaNotification.style.top = '0';
871
+ this.areaNotification.style.height = '100%';
872
+ this.areaNotification.style.backgroundColor = this.backgroundColor;
873
+ this.areaNotification.style.borderLeft = '2px solid gray';
874
+ this.areaNotification.style.width = this.width + 'px';
875
+ this.areaNotification.style.left = this.portalService.$window.innerWidth - this.width + 'px';
876
+ if (this.widthAreaUsed != 0) {
877
+ this.widthAreaUsed = this.width;
878
+ }
867
879
  };
868
880
  return AreaNotification;
869
881
  }(angularportalazure.UserControlBase));
@@ -955,7 +967,7 @@ var angularportalazure;
955
967
  //#endregion
956
968
  //#region Methods
957
969
  Tile.prototype.clicked = function () {
958
- this.portalService.bladeArea.setFirstBlade(this.bladePath);
970
+ this.portalService.areaBlades.setFirstBlade(this.bladePath);
959
971
  };
960
972
  return Tile;
961
973
  }());
@@ -1047,7 +1059,7 @@ var angularportalazure;
1047
1059
  }(angularportalazure.UserControlBase));
1048
1060
  angularportalazure.Panorama = Panorama;
1049
1061
  })(angularportalazure || (angularportalazure = {}));
1050
- /// <reference path="bladearea.ts" />
1062
+ /// <reference path="areablades.ts" />
1051
1063
  /// <reference path="usercontrolbase.ts" />
1052
1064
  /// <reference path="debug.ts" />
1053
1065
  /// <reference path="panorama.ts" />
@@ -1064,7 +1076,7 @@ var angularportalazure;
1064
1076
  _this.portalService = portalService;
1065
1077
  _this.portalService.portalShell = _this;
1066
1078
  _this.portalService.panorama = new angularportalazure.Panorama(_this.$scope, title, _this.portalService);
1067
- //this.portalService.bladeArea = new angularportalazure.BladeArea(this.$scope, portalService);
1079
+ //this.portalService.areaBlades = new angularportalazure.BladeArea(this.$scope, portalService);
1068
1080
  _this.portalService.panorama.title = title;
1069
1081
  return _this;
1070
1082
  //this.initialize();
@@ -1076,7 +1088,7 @@ var angularportalazure;
1076
1088
  /// <reference types="angular" />
1077
1089
  /// <reference types="angulartics" />
1078
1090
  /// <reference path="areanotification.ts" />
1079
- /// <reference path="bladearea.ts" />
1091
+ /// <reference path="areablades.ts" />
1080
1092
  /// <reference path="debug.ts" />
1081
1093
  /// <reference path="bladeparameter.ts" />
1082
1094
  /// <reference path="panorama.ts" />
@@ -1125,7 +1137,7 @@ var angularportalazure;
1125
1137
  controller: function () {
1126
1138
  this.$onInit = function () {
1127
1139
  this.close = function () {
1128
- //portalService.bladeArea.clearLastLevel();
1140
+ //portalService.areaBlades.clearLastLevel();
1129
1141
  };
1130
1142
  };
1131
1143
  },
@@ -1152,7 +1164,7 @@ var angularportalazure;
1152
1164
  controller: function () {
1153
1165
  this.$onInit = function () {
1154
1166
  this.close = function () {
1155
- //portalService.bladeArea.clearLastLevel();
1167
+ //portalService.areaBlades.clearLastLevel();
1156
1168
  };
1157
1169
  };
1158
1170
  },
@@ -1177,13 +1189,13 @@ var angularportalazure;
1177
1189
  // templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
1178
1190
  // link: function (scope, element, attrs, controller) {
1179
1191
  // //controller.close = function () {
1180
- // // portalService.bladeArea.clearLastLevel();
1192
+ // // portalService.areaBlades.clearLastLevel();
1181
1193
  // //};
1182
1194
  // },
1183
1195
  // controller: function () {
1184
1196
  // this.$onInit = function () {
1185
1197
  // this.close = function () {
1186
- // portalService.bladeArea.clearLastLevel();
1198
+ // portalService.areaBlades.clearLastLevel();
1187
1199
  // };
1188
1200
  // };
1189
1201
  // },
@@ -1196,7 +1208,7 @@ var angularportalazure;
1196
1208
  this.$onInit = function () {
1197
1209
  portalService.areaNotification.show();
1198
1210
  this.close = function () {
1199
- //portalService.bladeArea.clearLastLevel();
1211
+ //portalService.areaBlades.clearLastLevel();
1200
1212
  portalService.areaNotification.hide();
1201
1213
  };
1202
1214
  };
@@ -1226,7 +1238,7 @@ var angularportalazure;
1226
1238
  // controller: function () {
1227
1239
  // //this.$onInit = function () {
1228
1240
  // // this.close = function () {
1229
- // // portalService.bladeArea.clearLastLevel();
1241
+ // // portalService.areaBlades.clearLastLevel();
1230
1242
  // // };
1231
1243
  // //};
1232
1244
  // },
@@ -1262,9 +1274,8 @@ var angularportalazure;
1262
1274
  AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
1263
1275
  function AngularPortalHomeController($scope, portalService) {
1264
1276
  this.$onInit = function () {
1265
- console.log('initializse');
1266
1277
  portalService.areaNotification = new angularportalazure.AreaNotification($scope, portalService);
1267
- portalService.bladeArea = new angularportalazure.BladeArea($scope, portalService);
1278
+ portalService.areaBlades = new angularportalazure.AreaBlades($scope, portalService);
1268
1279
  };
1269
1280
  }
1270
1281
  var angularPortalHome = {
@@ -1298,7 +1309,7 @@ var angularportalazure;
1298
1309
  // controller: function () {
1299
1310
  // //this.$onInit = function () {
1300
1311
  // // this.close = function () {
1301
- // // portalService.bladeArea.clearLastLevel();
1312
+ // // portalService.areaBlades.clearLastLevel();
1302
1313
  // // };
1303
1314
  // //};
1304
1315
  // },
package/css/apn.css CHANGED
@@ -407,7 +407,7 @@ a {
407
407
  margin-top: 4px;
408
408
  margin-left: 6px;
409
409
  padding: 0;
410
- opacity: 0.3;
410
+ opacity: 0.6;
411
411
  -webkit-transition: opacity .2s ease-out;
412
412
  -moz-transition: opacity .2s ease-out;
413
413
  -o-transition: opacity .2s ease-out;
@@ -421,10 +421,10 @@ a {
421
421
  fill: #fff; }
422
422
 
423
423
  .fxs-blade .fxs-blade-header .fxs-blade-actions button > svg * {
424
- fill: #8f9ca8; }
424
+ /*fill: #8f9ca8;*/ }
425
425
 
426
426
  .fxs-blade .fxs-blade-header .fxs-blade-actions button svg * {
427
- fill: #63707e; }
427
+ /*fill: #63707e;*/ }
428
428
 
429
429
  .msportalfx-svg-c01 {
430
430
  fill: #fff; }
package/css/apn.min.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";html,body{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;height:100%;width:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;height:35px;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-feedback,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-switchportal,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-signout{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-stacklayout-child{height:100%;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.3;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-actions button>svg *{fill:#8f9ca8;}.fxs-blade .fxs-blade-header .fxs-blade-actions button svg *{fill:#63707e;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:100%;width:100%;}.fxs-blade-locked.fxs-blade .fxs-part,.fxs-bladestyle-context.fxs-blade .fxs-part,.fxs-bladestyle-contextaction.fxs-blade .fxs-part,.fxs-bladestyle-help.fxs-blade .fxs-part{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}.k-grid-content table tbody tr{padding:1px 0 1px 10px;}.k-grid td{padding:0 .6em;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
1
+ @charset "UTF-8";html,body{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;height:100%;width:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;height:35px;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-feedback,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-switchportal,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-signout{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-stacklayout-child{height:100%;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.6;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:100%;width:100%;}.fxs-blade-locked.fxs-blade .fxs-part,.fxs-bladestyle-context.fxs-blade .fxs-part,.fxs-bladestyle-contextaction.fxs-blade .fxs-part,.fxs-bladestyle-help.fxs-blade .fxs-part{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}.k-grid-content table tbody tr{padding:1px 0 1px 10px;}.k-grid td{padding:0 .6em;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
@@ -15,7 +15,7 @@ namespace angularportalazure {
15
15
  controller: function () {
16
16
  this.$onInit = function () {
17
17
  this.close = function () {
18
- //portalService.bladeArea.clearLastLevel();
18
+ //portalService.areaBlades.clearLastLevel();
19
19
  };
20
20
  };
21
21
  },
@@ -15,7 +15,7 @@ namespace angularportalazure {
15
15
  controller: function () {
16
16
  this.$onInit = function () {
17
17
  this.close = function () {
18
- //portalService.bladeArea.clearLastLevel();
18
+ //portalService.areaBlades.clearLastLevel();
19
19
  };
20
20
  };
21
21
  },
@@ -13,13 +13,13 @@ namespace angularportalazure {
13
13
  // templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
14
14
  // link: function (scope, element, attrs, controller) {
15
15
  // //controller.close = function () {
16
- // // portalService.bladeArea.clearLastLevel();
16
+ // // portalService.areaBlades.clearLastLevel();
17
17
  // //};
18
18
  // },
19
19
  // controller: function () {
20
20
  // this.$onInit = function () {
21
21
  // this.close = function () {
22
- // portalService.bladeArea.clearLastLevel();
22
+ // portalService.areaBlades.clearLastLevel();
23
23
  // };
24
24
  // };
25
25
  // },
@@ -34,7 +34,7 @@ namespace angularportalazure {
34
34
  this.$onInit = function () {
35
35
  portalService.areaNotification.show();
36
36
  this.close = function () {
37
- //portalService.bladeArea.clearLastLevel();
37
+ //portalService.areaBlades.clearLastLevel();
38
38
  portalService.areaNotification.hide();
39
39
  };
40
40
  };
@@ -222,7 +222,7 @@
222
222
  </div>
223
223
  </div>
224
224
  </header>
225
- <div class="fxs-blade-content fxs-pannable" style="height:calc(100% - 125px);">
225
+ <div id="apa-blade-content" class="fxs-blade-content fxs-pannable" style="height:calc(100% - 125px);">
226
226
  <div class="fxs-blade-stacklayout fxs-stacklayout fxs-stacklayout-vertical" ng-style="$ctrl.vm.widthStackLayout">
227
227
  <div class="fxs-stacklayout-child">
228
228
  <div class="fxs-lens">
@@ -11,7 +11,7 @@
11
11
  // controller: function () {
12
12
  // //this.$onInit = function () {
13
13
  // // this.close = function () {
14
- // // portalService.bladeArea.clearLastLevel();
14
+ // // portalService.areaBlades.clearLastLevel();
15
15
  // // };
16
16
  // //};
17
17
  // },
@@ -31,11 +31,11 @@
31
31
  </div>
32
32
  <div id="apa-blade-area" class="fxs-journey-target fxs-journey">
33
33
  <div class="fxs-journey-layout fxs-stacklayout fxs-stacklayout-horizontal">
34
- <div data-ng-repeat="blade in $ctrl.vm.portalService.bladeArea.blades track by $index" class="azureportalblade fxs-stacklayout-child" ng-include="blade.path"></div>
34
+ <div data-ng-repeat="blade in $ctrl.vm.portalService.areaBlades.blades track by $index" class="azureportalblade fxs-stacklayout-child" ng-include="blade.path"></div>
35
35
  </div>
36
36
  </div>
37
37
  <div id="apa-notification-area" style="display: none;">
38
- asdf
38
+ <button ng-click="$ctrl.vm.portalService.areaNotification.hide();">CLOSE</button>
39
39
  </div>
40
40
  </div>
41
41
  </div>
@@ -16,9 +16,8 @@
16
16
  AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
17
17
  function AngularPortalHomeController($scope: angular.IScope, portalService: angularportalazure.PortalService) {
18
18
  this.$onInit = function () {
19
- console.log('initializse');
20
19
  portalService.areaNotification = new angularportalazure.AreaNotification($scope, portalService);
21
- portalService.bladeArea = new angularportalazure.BladeArea($scope, portalService);
20
+ portalService.areaBlades = new angularportalazure.AreaBlades($scope, portalService);
22
21
  };
23
22
  }
24
23
 
@@ -18,7 +18,7 @@
18
18
  // controller: function () {
19
19
  // //this.$onInit = function () {
20
20
  // // this.close = function () {
21
- // // portalService.bladeArea.clearLastLevel();
21
+ // // portalService.areaBlades.clearLastLevel();
22
22
  // // };
23
23
  // //};
24
24
  // },
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.141",
5
+ "version": "0.2.143",
6
6
  "main": "index.js",
7
7
  "typings": "apn.d.ts",
8
8
  "dependencies": {