@ardimedia/angular-portal-azure 0.2.137 → 0.2.138
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 +2 -2
- package/directives/blade/blade.html +1 -1
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -478,14 +478,14 @@ var angularportalazure;
|
|
|
478
478
|
Blade.prototype.setBladeHeights = function () {
|
|
479
479
|
var that = this;
|
|
480
480
|
that.bladeContentHeight = $('.fxs-blade-content').height();
|
|
481
|
-
that.bladeContentInnerHeight = that.bladeContentHeight -
|
|
481
|
+
that.bladeContentInnerHeight = that.bladeContentHeight - 20;
|
|
482
482
|
// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
|
|
483
483
|
var id;
|
|
484
484
|
$(window).resize(function () {
|
|
485
485
|
clearTimeout(id);
|
|
486
486
|
id = setTimeout(function () {
|
|
487
487
|
that.bladeContentHeight = $('.fxs-blade-content').height();
|
|
488
|
-
that.bladeContentInnerHeight = that.bladeContentHeight -
|
|
488
|
+
that.bladeContentInnerHeight = that.bladeContentHeight - 20;
|
|
489
489
|
}, 500);
|
|
490
490
|
});
|
|
491
491
|
};
|
|
@@ -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% -
|
|
225
|
+
<div 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">
|
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.138",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|