Skip to content

Commit 02befee

Browse files
committed
Fix credits on demo and README
1 parent 0547361 commit 02befee

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,9 @@ Read more on `vue-form-generator`'s [instruction page](https://icebob.gitbooks.i
126126
| `enter` | | Fires on keyup.enter event | `onEnter` deprecated |
127127

128128
## Highlights & Credits
129-
- Vue app created by [vue-cli](https://github.com/vuejs/vue-cli).
130129
- Telephone Number parsing, validation by [libphonenumber-js](https://catamphetamine.github.io/libphonenumber-js/).
131130
- Country Codes data from [intl-tel-input](https://github.com/jackocnr/intl-tel-input/blob/master/src/js/data.js).
132-
- Country Flags by [behdad/region-flags](https://github.com/behdad/region-flags).
133-
- User's Location by [get-json](https://www.npmjs.com/package/get-json) and [ipifo.io](https://ipinfo.io/json)
131+
- User's country by [ip2c.org](https://ip2c.org/s), request using [simple-get](https://www.npmjs.com/package/simple-get).
134132
135133
## Demo Usage
136134

demo/App.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<template>
22
<div id="app">
3-
<h1>Telephone Input Vue</h1>
4-
<h2 style="color: #999">made with &#x2764; by Steven.</h2>
53
<div style="width: 500px; margin: 20px auto;">
64
<vue-tel-input @input="onInput" :preferredCountries="['us', 'gb', 'ua']"></vue-tel-input>
75
</div>

demo/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
</head>
2020

2121
<body>
22+
<h1>Telephone Input Vue</h1>
23+
<h2 style="color: #999">made with &#x2764; by some <a style="color: inherit" href="https://github.com/EducationLink/vue-tel-input/graphs/contributors">awesome humans</a>.</h2>
2224
<div id="app"></div>
2325
<!-- built files will be auto injected -->
24-
<footer style="text-align: center">View on <span style="font-size: 13px;">[<a href="https://github.com/EducationLink/vue-tel-input">github</a>, <a href="https://www.npmjs.com/package/vue-tel-input">npm</a>]</span>.</footer>
26+
<footer style="text-align: center">View <span style="font-size: 13px;">[<a href="https://github.com/EducationLink/vue-tel-input">github</a>, <a href="https://github.com/EducationLink/vue-tel-input/releases">changelogs</a>, <a href="https://www.npmjs.com/package/vue-tel-input">npm</a>]</span>.</footer>
2527
</body>
2628

2729
</html>

0 commit comments

Comments
 (0)