Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* css improvements

## v0.7.1 / 7th February 2016
* bower support (using npmcdn)
* bower support (using unpkg)

## v0.7.0 / 7th February 2016
* umd build
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,25 +51,25 @@ to include the default styles add the following import statement to your stylus
`@import 'node_modules/react-selectize/themes/index.css'`

* **bower:**
`bower install https://npmcdn.com/react-selectize@2.0.3/bower.zip`
`bower install https://unpkg.com/react-selectize@2.0.3/bower.zip`

* **1998 script tag:**
```html
<html>
<head>
<script src="http://www.preludels.com/prelude-browser-min.js" type="text/javascript" ></script>
<script src="https://npmcdn.com/prelude-extension@0.0.11/dist/index.min.js" type="text/javascript" ></script>
<script src="https://unpkg.com/prelude-extension@0.0.11/dist/index.min.js" type="text/javascript" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react-with-addons.min.js" type="text/javascript" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react-dom.min.js" type="text/javascript" ></script>

<!-- optional dependency (only required with using the tether prop) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" type="text/javascript" ></script>

<!-- REACT SELECTIZE -->
<script src="https://npmcdn.com/react-selectize@2.0.3/dist/index.min.js" type="text/javascript" ></script>
<script src="https://unpkg.com/react-selectize@2.0.3/dist/index.min.js" type="text/javascript" ></script>

<!-- THEMES (default, bootstrap3, material) -->
<link rel="stylesheet" href="https://npmcdn.com/react-selectize@2.0.3/dist/index.min.css"/>
<link rel="stylesheet" href="https://unpkg.com/react-selectize@2.0.3/dist/index.min.css"/>

</head>
</html>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"description": "A Stateless & Flexible Select component for React inspired by Selectize",
"dependencies": {
"bower-prelude-ls": "*",
"prelude-extension": "https://npmcdn.com/prelude-extension@0.0.13/bower.zip",
"prelude-extension": "https://unpkg.com/prelude-extension@0.0.13/bower.zip",
"tether": "~1.1.1"
},
"moduleType": [
Expand Down