sortablejs 1.15.0 → 1.15.2
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/README.md +2 -2
- package/Sortable.js +597 -1029
- package/Sortable.min.js +2 -2
- package/modular/sortable.complete.esm.js +597 -1029
- package/modular/sortable.core.esm.js +597 -1030
- package/modular/sortable.esm.js +597 -1029
- package/package.json +56 -56
package/README.md
CHANGED
|
@@ -54,12 +54,12 @@ Demo: http://sortablejs.github.io/Sortable/
|
|
|
54
54
|
|
|
55
55
|
Install with NPM:
|
|
56
56
|
```bash
|
|
57
|
-
|
|
57
|
+
npm install sortablejs --save
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
Install with Bower:
|
|
61
61
|
```bash
|
|
62
|
-
|
|
62
|
+
bower install --save sortablejs
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
Import into your project:
|