소스 검색

rebuild dist files

REJack 4 년 전
부모
커밋
5ac281611b
4개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 1
      dist/js/adminlte.js
  2. 0 0
      dist/js/adminlte.js.map
  3. 0 0
      dist/js/adminlte.min.js
  4. 0 0
      dist/js/adminlte.min.js.map

+ 9 - 1
dist/js/adminlte.js

@@ -1511,6 +1511,7 @@
   var CLASS_NAME_LAYOUT_FIXED$1 = 'layout-fixed';
   var CLASS_NAME_CONTROL_SIDEBAR_SLIDE_OPEN = 'control-sidebar-slide-open';
   var CLASS_NAME_CONTROL_SIDEBAR_OPEN$1 = 'control-sidebar-open';
+  var CLASS_NAME_LAYOUT_TOP_NAV = 'layout-top-nav';
   var Default$6 = {
     scrollbarTheme: 'os-theme-light',
     scrollbarAutoHide: 'l',
@@ -1566,7 +1567,11 @@
 
       if (offset !== false) {
         if (max === heights.controlSidebar) {
-          $contentSelector.css(this._config.panelAutoHeightMode, max + offset);
+          if ($body.hasClass(CLASS_NAME_LAYOUT_TOP_NAV)) {
+            $contentSelector.css(this._config.panelAutoHeightMode, max + offset + heights.header + heights.footer);
+          } else {
+            $contentSelector.css(this._config.panelAutoHeightMode, max + offset);
+          }
         } else if (max === heights.window) {
           $contentSelector.css(this._config.panelAutoHeightMode, max + offset - heights.header - heights.footer);
         } else {
@@ -1641,6 +1646,9 @@
       $__default['default'](window).resize(function () {
         _this.fixLayoutHeight();
       });
+      $__default['default'](document).ready(function () {
+        _this.fixLayoutHeight();
+      });
       setTimeout(function () {
         $__default['default']('body.hold-transition').removeClass('hold-transition');
       }, 50);

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/js/adminlte.js.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/js/adminlte.min.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/js/adminlte.min.js.map


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.