You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Converts previous example pages to invidual html partials which are
wrapped in standard header and footer as part of a docs build process
- Updates all examples to angular v1.5 making use of controllerAs
syntax
- Standardises the look and feel across examples
- Creates dedicated github pages page (docs/index.html) which has links
to all examples
- Adds an "edit in plunkr" button to launch the example in a plunkr
session
- Automates the deployment to github pages using travis ci whenever the
master branch is built.
- General tidy up of README and index docs
Closesangular-ui#112
AngularJS-native version of [Select2](http://ivaynberg.github.io/select2/) and [Selectize](http://brianreavis.github.io/selectize.js/). [http://angular-ui.github.io/ui-select/](http://angular-ui.github.io/ui-select/)
4
4
5
-
AngularJS-native version of [Select2](http://ivaynberg.github.io/select2/) and [Selectize](http://brianreavis.github.io/selectize.js/).
-Multiple Themes: Bootstrap, Select2 and Selectize
22
19
- Keyboard support
23
-
-jQuery not required (except for old browsers)
20
+
-No jQuery required (except for old browsers)
24
21
- Small code base: 4.57KB min/gzipped vs 20KB for select2
25
22
26
23
For the roadmap, check [issue #3](https://github.com/angular-ui/ui-select/issues/3) and the [Wiki page](https://github.com/angular-ui/ui-select/wiki/Roadmap).
27
24
28
-
## Installation using [Composer](http://getcomposer.org/)
29
-
30
-
Make sure composer is install globally before we proceed. After that we need to add below piece of code in `composer.json` file located inside your project root folder.
25
+
## Installation Methods
31
26
27
+
### npm
32
28
```
33
-
{
34
-
"require": {
35
-
"components/ui-select": "dev-master"
36
-
}
37
-
}
29
+
$ npm install angular-ui-select
30
+
```
31
+
### bower
32
+
```
33
+
$ bower install angular-ui-select
38
34
```
39
-
40
-
- Run `composer update` and composer will install the component.
41
-
- Inside your HTML add below script and link tags.
0 commit comments