-
Notifications
You must be signed in to change notification settings - Fork 615
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
c3e46e5
commit 24d6aea
Showing
5 changed files
with
58 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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> |