kamrify commited on
Commit
06b7251
·
1 Parent(s): 5080af3

Update readme

Browse files
Files changed (2) hide show
  1. index.html +2 -2
  2. readme.md +5 -4
index.html CHANGED
@@ -303,7 +303,7 @@ activeElement.getNode(); // Gets the DOM Element behind this element
303
  <hr class="hr__fancy">
304
  <div class="section__example">
305
  <p>A product by <a href="http://twitter.com/kamranahmedse" target="_blank">Kamran</a> produced out of boredom and
306
- frustration in cold Berlin after he gave up on trying to find a perfect solution to integrate journey introduction
307
  and overlays.</p>
308
  <a href="https://twitter.com/kamranahmedse?ref_src=twsrc%5Etfw"
309
  class="twitter-follow-button mr-3"
@@ -329,4 +329,4 @@ activeElement.getNode(); // Gets the DOM Element behind this element
329
  <script src="./dist/demo.js"></script>
330
  <script src="./dist/emoji.js"></script>
331
  </body>
332
- </html>
 
303
  <hr class="hr__fancy">
304
  <div class="section__example">
305
  <p>A product by <a href="http://twitter.com/kamranahmedse" target="_blank">Kamran</a> produced out of boredom and
306
+ frustration after he gave up on trying to find a perfect solution to integrate journey introduction
307
  and overlays.</p>
308
  <a href="https://twitter.com/kamranahmedse?ref_src=twsrc%5Etfw"
309
  class="twitter-follow-button mr-3"
 
329
  <script src="./dist/demo.js"></script>
330
  <script src="./dist/emoji.js"></script>
331
  </body>
332
+ </html>
readme.md CHANGED
@@ -35,15 +35,16 @@ For Usage and Examples, [have a look at demo](http://kamranahmed.info/driver)
35
 
36
  ## Installation
37
 
38
- ```zsh
 
 
39
  yarn add driver.js
 
40
  ```
41
 
42
- Or include directly
43
 
44
  ```html
45
- <!-- Include Driver CSS -->
46
  <link rel="stylesheet" href="/dist/driver.min.css">
47
- <!-- Include Driver JavaScript -->
48
  <script src="/dist/driver.min.js"></script>
49
  ```
 
35
 
36
  ## Installation
37
 
38
+ You can install it using `yarn` or `npm`, whatever you prefer
39
+
40
+ ```sh
41
  yarn add driver.js
42
+ npm install driver.js
43
  ```
44
 
45
+ Or grab the code from `dist` directory and include it directly
46
 
47
  ```html
 
48
  <link rel="stylesheet" href="/dist/driver.min.css">
 
49
  <script src="/dist/driver.min.js"></script>
50
  ```