Skip to content

Commit 323ce06

Browse files
committed
docs(*): new deploy (angular-ui/ui-select@9c6f877)
1 parent bc35d05 commit 323ce06

File tree

7 files changed

+69
-98
lines changed

7 files changed

+69
-98
lines changed

demo-select2-with-bootstrap.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363

6464
<body class="ng-cloak" ng-controller="DemoCtrl as ctrl">
6565
<p>Selected: {{ctrl.person.selected.name}}</p>
66+
 <p>Multiple selected: <span ng-repeat="selected in ctrl.multipleDemo.selectedPeople" ng-bind="($first ? '' : ', ') + selected.name"></span></p>
6667

6768
<form class="form-horizontal">
6869
<fieldset>
@@ -87,8 +88,8 @@
8788
<label class="col-sm-3 control-label">Multiple</label>
8889
<div class="col-sm-6">
8990

90-
<ui-select multiple sortable="true" ng-model="ctrl.person.selected" theme="select2" class="form-control" title="Choose a person">
91-
<ui-select-match placeholder="Select or search a person in the list...">{{$select.selected.name}}</ui-select-match>
91+
<ui-select multiple sortable="true" ng-model="ctrl.multipleDemo.selectedPeople" theme="select2" class="form-control" title="Choose a person">
92+
<ui-select-match placeholder="Select or search a person in the list...">{{$item.name}}</ui-select-match>
9293
<ui-select-choices repeat="item in ctrl.people | filter: $select.search">
9394
<div ng-bind-html="item.name | highlight: $select.search"></div>
9495
<small ng-bind-html="item.email | highlight: $select.search"></small>
@@ -152,5 +153,6 @@
152153
</div>
153154

154155
</fieldset>
155-
</form></body>
156+
</form>
157+
</body>
156158
</html>

dist/select.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.16.1 - 2016-04-25T12:29:50.247Z
4+
* Version: 0.16.1 - 2016-04-25T16:08:16.932Z
55
* License: MIT
66
*/
77

@@ -200,11 +200,7 @@ body > .ui-select-bootstrap.open {
200200
position: relative;
201201
}
202202

203-
.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
204-
pointer-events: none;
205-
}
206-
207-
.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
203+
.ui-select-multiple .ui-select-match-item.dropping-before:before {
208204
content: "";
209205
position: absolute;
210206
top: 0;
@@ -214,7 +210,7 @@ body > .ui-select-bootstrap.open {
214210
border-left: 1px solid #428bca;
215211
}
216212

217-
.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
213+
.ui-select-multiple .ui-select-match-item.dropping-after:after {
218214
content: "";
219215
position: absolute;
220216
top: 0;

dist/select.js

Lines changed: 54 additions & 81 deletions
Large diffs are not rendered by default.

dist/select.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)