-
-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gzipped options for both builds & style issue fixed.
- Loading branch information
1 parent
11dc5fe
commit eda87a0
Showing
13 changed files
with
243 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,13 +53,13 @@ git clone https://github.com/TarekRaafat/autoComplete.js.git | |
`CSS` | ||
|
||
```html | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].3/dist/css/autoComplete.min.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].4/dist/css/autoComplete.min.css"/> | ||
``` | ||
|
||
`JS` | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].3/dist/js/autoComplete.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].4/dist/js/autoComplete.min.js"></script> | ||
``` | ||
|
||
#### <a href="https://www.npmjs.com/package/@tarekraafat/autocomplete.js">npm</a> install `(Node Package Manager)` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,13 +68,13 @@ npm run build | |
`CSS` | ||
|
||
```html | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].3/dist/css/autoComplete.min.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].4/dist/css/autoComplete.min.css"/> | ||
``` | ||
|
||
`JS` | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].3/dist/js/autoComplete.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].4/dist/js/autoComplete.min.js"></script> | ||
``` | ||
|
||
- HTML Local load | ||
|
@@ -221,7 +221,7 @@ it with [autoComplete.js][so tag]. | |
- [ ] Sort rendered results | ||
- [ ] Alphabet | ||
- [ ] Distance | ||
- [ ] Dynamic input field selector | ||
- [ ] Dynamic input field selector | ||
|
||
### Usability: | ||
|
||
|
@@ -230,8 +230,9 @@ it with [autoComplete.js][so tag]. | |
- [x] Interactions | ||
- [ ] Number of results displayed | ||
- [ ] Navigate results list with keyboard | ||
- [ ] Autocomplete query with nearest result in placeholder | ||
- [ ] Inline autocomplete input with nearest result | ||
- [ ] No matches found response & text | ||
- [x] Avail Gzip file options | ||
|
||
* * * | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,8 @@ | |
<meta property="og:image:width" content="1200"> | ||
<meta property="og:image:height" content="1200"> | ||
<meta property="fb:app_id" content="1482373115226718"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<link rel="manifest" href="../manifest.json"> | ||
<link rel="apple-touch-icon" sizes="57x57" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-72x72.png"> | ||
|
@@ -51,7 +52,7 @@ | |
<meta name="msapplication-TileColor" content="#ffffff"> | ||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].3/dist/css/autoComplete.min.css"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].4/dist/css/autoComplete.min.css"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="./css/main.css"> | ||
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet"> | ||
</head> | ||
|
@@ -116,7 +117,7 @@ <h4>mode</h4> | |
</div> | ||
</footer> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].3/dist/js/autoComplete.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected].4/dist/js/autoComplete.min.js.gz"></script> | ||
<script src="./js/index.js"></script> | ||
</body> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.