Skip to content

Commit 1b25b24

Browse files
committed
docs(*): new deploy (angular-ui/ui-select@152856d)
1 parent 323ce06 commit 1b25b24

File tree

8 files changed

+99
-70
lines changed

8 files changed

+99
-70
lines changed

demo-select2-with-bootstrap.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
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>
6766

6867
<form class="form-horizontal">
6968
<fieldset>
@@ -88,8 +87,8 @@
8887
<label class="col-sm-3 control-label">Multiple</label>
8988
<div class="col-sm-6">
9089

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>
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>
9392
<ui-select-choices repeat="item in ctrl.people | filter: $select.search">
9493
<div ng-bind-html="item.name | highlight: $select.search"></div>
9594
<small ng-bind-html="item.email | highlight: $select.search"></small>
@@ -153,6 +152,5 @@
153152
</div>
154153

155154
</fieldset>
156-
</form>
157-
</body>
155+
</form></body>
158156
</html>

dist/select.css

Lines changed: 7 additions & 3 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-25T16:08:16.932Z
4+
* Version: 0.16.1 - 2016-04-27T13:00:29.356Z
55
* License: MIT
66
*/
77

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

203-
.ui-select-multiple .ui-select-match-item.dropping-before:before {
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 {
204208
content: "";
205209
position: absolute;
206210
top: 0;
@@ -210,7 +214,7 @@ body > .ui-select-bootstrap.open {
210214
border-left: 1px solid #428bca;
211215
}
212216

213-
.ui-select-multiple .ui-select-match-item.dropping-after:after {
217+
.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
214218
content: "";
215219
position: absolute;
216220
top: 0;

dist/select.js

Lines changed: 81 additions & 54 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.

dist/select.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/select.min.js

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

dist/select.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ <h3>Dependencies</h3>
149149

150150
<h3>Installation</h3>
151151
<h4>Install via npm</h4>
152-
<pre>$ npm install angular-ui-select</pre>
152+
<pre>$ npm install ui-select</pre>
153153
<h4>Install via bower</h4>
154154
<pre>$ bower install angular-ui-select</pre>
155155
<p>

0 commit comments

Comments
 (0)