We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baa350d commit aa8c8d7Copy full SHA for aa8c8d7
1 file changed
README.md
@@ -13,10 +13,20 @@ The easiest way to use react-sortablejs is to install it from npm and include it
13
npm install --save react-sortablejs
14
```
15
16
-You can create a standalone module using webpack:
+You can create a standalone ES5 module using webpack:
17
```bash
18
+$ git clone https://github.com/cheton/react-sortable.git
19
+$ cd react-sortable
20
$ npm install
-$ webpack
21
+$ npm run dist
22
+```
23
+
24
+Then, include the following scripts in your html:
25
+```html
26
+<script src="http://fb.me/react-0.14.7.js"></script>
27
+<script src="http://fb.me/react-dom-0.14.7.js"></script>
28
+<script src="http://cdnjs.cloudflare.com/ajax/libs/Sortable/1.4.2/Sortable.min.js"></script>
29
+<script src="dist/react-sortable.min.js"></script>
30
31
32
## Options
0 commit comments