Skip to content

Commit

Permalink
fixes #467
Browse files Browse the repository at this point in the history
  • Loading branch information
hpyou committed Jan 29, 2018
1 parent a617f03 commit 11aaf87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jigsaw/component/table/table.html
@@ -1,5 +1,5 @@
<div class="jigsaw-table-range" #contentScrollbar
[perfectScrollbar]="{suppressScrollY: true, wheelSpeed: 0.5, wheelPropagation: true}"
[perfectScrollbar]="{suppressScrollY: true, wheelSpeed: 0.5, wheelPropagation: true, minScrollbarLength: 20}"
[class.jigsaw-table-hide-head]="hideHeader">
<table class="jigsaw-table-header" [hidden]="hideHeader">
<colgroup>
Expand All @@ -24,7 +24,7 @@
</thead>
</table>
<div #bodyScrollbar class="jigsaw-table-body-range" [style.width]="contentWidth"
[perfectScrollbar]="{suppressScrollX: true, wheelSpeed: 0.5, wheelPropagation: true}">
[perfectScrollbar]="{suppressScrollX: true, wheelSpeed: 0.5, wheelPropagation: true, minScrollbarLength: 20}">
<table class="jigsaw-table-body">
<colgroup>
<col *ngFor="let head of _$headerSettings;" width="{{head.width}}">
Expand Down

0 comments on commit 11aaf87

Please sign in to comment.