You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Trees are also supported: [tree with fake root element (\*ngFor once, root can a
13
13
## Installation
14
14
15
15
```sh
16
-
npm i ngx-sortablejs sortablejs
16
+
npm i ngx-sortablejs sortablejs@~1.9.0
17
17
```
18
18
19
19
You are configured now. If you use Webpack or Angular CLI go to the usage. If you have SystemJS, that's sad, but you can go to the end of the document to find configuration steps there.
@@ -217,6 +217,20 @@ This value will be used as a default one, but it can be overwritten by a local `
217
217
218
218
## Angular Material specifics
219
219
220
+
### Expansion panel
221
+
222
+
There is a bug with expansion panel which appears because angular material does not really hide the content of panel, but uses `visibility: hidden`. What we need to do is to actually totally hide it from the DOM instead.
The elements with ripple effect like `mat-list-item` are affected. The dragging is broken because there is a [div created right under the cursor](https://github.com/angular/material2/blob/master/src/lib/core/ripple/ripple-renderer.ts#L142) and the webkit has no idea what to do with it.
0 commit comments