From 84027eb5cef1624af74656da46728d101213b46a Mon Sep 17 00:00:00 2001 From: David Sulc Date: Tue, 23 Oct 2018 14:48:53 +0200 Subject: [PATCH] Correct as-sortable-drag class name --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b944525..647bc28 100755 --- a/README.md +++ b/README.md @@ -76,17 +76,17 @@ The directives are structured like below. - A customized placeholder can be provided by specifying the `placeholder` option provided to the as-sortable item. `placeholder` can be both a template string or a function returning a template string. #### Dragging element CSS -- CSS styling may be applied via the "as-sortable-dragging" class -- When the "as-sortable-item" is being dragged, the CSS class "as-sortable-dragging" is added to all elements. +- CSS styling may be applied via the "as-sortable-drag" class +- When the "as-sortable-item" is being dragged, the CSS class "as-sortable-drag" is added to all elements. e.g. in HTML ``````` ```
```` `````` -```
```` +```
```` in CSS - .as-sortable-dragging{ + .as-sortable-drag{ border: 1px dotted #000 !important; }