-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e47f6f
commit f54b514
Showing
2 changed files
with
8 additions
and
8 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 |
---|---|---|
|
@@ -54,13 +54,13 @@ <h2>-- local files --</h2> | |
<h2>-- cdn --</h2> | ||
<ul> | ||
<li> | ||
https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/js/polyfill.js | ||
https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/js/polyfill.js | ||
</li> | ||
<li> | ||
https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/js/autocomplete.ie.min.js | ||
https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/js/autocomplete.ie.min.js | ||
</li> | ||
<li> | ||
https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/css/autocomplete.ie.min.css | ||
https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/css/autocomplete.ie.min.css | ||
</li> | ||
</ul> | ||
<h2>-- cdn polyfill from npm --</h2> | ||
|
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 |
---|---|---|
|
@@ -52,10 +52,10 @@ <h3>Include JS and CSS files</h3> | |
-- OR CDN -- | ||
<div rel="HTML" class="html-class"> | ||
<pre><code class="language-html"><!-- css --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/css/autocomplete.min.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/css/autocomplete.min.css"/> | ||
|
||
<!-- js --> | ||
<script src="https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/js/autocomplete.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/js/autocomplete.min.js"></script> | ||
</code></pre> | ||
</div> | ||
|
||
|
@@ -73,11 +73,11 @@ <h4>-- use local files from dist --</h4> | |
<h4>-- use cdn --</h4> | ||
<div rel="HTML" class="html-class"> | ||
<pre><code class="language-html"><!-- css --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/css/autocomplete.ie.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/css/autocomplete.ie.min.css"> | ||
|
||
<!-- js --> | ||
<script src="https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/js/polyfill.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/tomik23/[email protected].1/dist/js/autocomplete.ie.min.js"></script></code></pre> | ||
<script src="https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/js/polyfill.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/tomik23/[email protected].2/dist/js/autocomplete.ie.min.js"></script></code></pre> | ||
</div> | ||
<h4>-- use cdn polyfills from npm --</h4> | ||
<div rel="HTML" class="html-class"> | ||
|