Commit 91ed5782 91ed57825f002d64c971d7f27f70877b0d92c50b by Vincent Peybernes

Fix README

1 parent 95de9a84
Pipeline #50 for 91ed5782 passed in 30 seconds
1 ## [unreleased] 1 ## [unreleased]
2 * Fix Angular export on Electron app 2 * Fix Angular export on Electron app
3 * Fix README
3 4
4 ## [0.1.0] - 2016-12-10 5 ## [0.1.0] - 2016-12-10
5 * Fix browser import 6 * Fix browser import
......
...@@ -12,7 +12,7 @@ of each candidates. ...@@ -12,7 +12,7 @@ of each candidates.
12 The algorithm consist to search for each place a majority of votes for a candidate at this 12 The algorithm consist to search for each place a majority of votes for a candidate at this
13 placement or a greater placement. 13 placement or a greater placement.
14 14
15 You can refer to [this explain from boogiebythebay.org][1] for all the details. 15 You can refer to [this explain from boogiebythebay.org][1] for all details.
16 16
17 ## Get RelativePlacementJS 17 ## Get RelativePlacementJS
18 ```shell 18 ```shell
...@@ -25,7 +25,7 @@ var RelativePlacement = require('relative-placement-js'); ...@@ -25,7 +25,7 @@ var RelativePlacement = require('relative-placement-js');
25 25
26 With browser: 26 With browser:
27 ```html 27 ```html
28 <script src="{BASE_PATH}/node_modules/relative-placement-js/dist/relative-placement.js"></script> 28 <script src="{BASE_PATH}/node_modules/relative-placement-js/dist/relative-placement-es2015.js"></script>
29 <!-- Or the original ES6 sources --> 29 <!-- Or the original ES6 sources -->
30 <script src="{BASE_PATH}/node_modules/relative-placement-js/lib/relative-placement.js"></script> 30 <script src="{BASE_PATH}/node_modules/relative-placement-js/lib/relative-placement.js"></script>
31 ``` 31 ```
......