Skip to content

Commit

Permalink
Version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jshjohnson committed Nov 24, 2018
1 parent c3e46e5 commit 24d6aea
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 10 deletions.
12 changes: 8 additions & 4 deletions public/assets/scripts/choices.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/scripts/choices.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/assets/scripts/choices.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
<meta name="theme-color" content="#ffffff">

<!-- Ignore these -->
<link rel="stylesheet" href="assets/styles/base.min.css?version=4.1.0">
<link rel="stylesheet" href="assets/styles/base.min.css?version=4.1.1">
<!-- End ignore these -->

<!-- Optional includes -->
<script src="https://cdn.polyfill.io/v2/polyfill.js?features=es5,fetch,Element.prototype.classList,requestAnimationFrame,Node.insertBefore,Node.firstChild,Object.assign"></script>
<!-- End optional includes -->

<!-- Choices includes -->
<link rel="stylesheet" href="assets/styles/choices.min.css?version=4.1.0">
<script src="assets/scripts/choices.min.js?version=4.1.0"></script>
<link rel="stylesheet" href="assets/styles/choices.min.css?version=4.1.1">
<script src="assets/scripts/choices.min.js?version=4.1.1"></script>
<!-- End Choices includes -->

<!--[if lt IE 9]>
Expand Down
44 changes: 44 additions & 0 deletions public/test/test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<title>Choices</title>
<meta name=description itemprop=description content="A lightweight, configurable select box/text input plugin. Similar to Select2 and Selectize but without the jQuery dependency.">
<link rel="apple-touch-icon" sizes="180x180" href="../assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" href="../assets/images/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="../assets/images/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="../assets/images/manifest.json">
<link rel="mask-icon" href="../assets/images/safari-pinned-tab.svg" color="#00bcd4">
<link rel="shortcut icon" href="../assets/images/favicon.ico">
<meta name="msapplication-config" content="../assets/images/browserconfig.xml">
<meta name="theme-color" content="#ffffff">

<!-- Ignore these -->
<link rel="stylesheet" href="../assets/styles/base.min.css?version=3.0.2">
<!-- End ignore these -->

<!-- Choices includes -->
<link rel="stylesheet" href="../assets/styles/choices.min.css?version=3.0.2">
<script src="../assets/scripts/choices.min.js?version=2.8.8"></script>
<!-- End Choices includes -->
</head>

<body>
<div class="container">
<div class="section">
<form>
<select id="choices-basic" multiple>
<option value="foo">bar</option>
</select>
</form>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
new Choices('#choices-basic');
});
</script>
</body>
</html>

0 comments on commit 24d6aea

Please sign in to comment.