Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 032b152

Browse files
committedMar 9, 2015
chore(build): v0.11.1
1 parent 27c565e commit 032b152

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed
 

Diff for: ‎bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-select",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"homepage": "https://github.com/angular-ui/ui-select",
55
"authors": [
66
"AngularUI"

Diff for: ‎dist/select.css

+1-1
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.11.0 - 2015-03-09T00:55:08.444Z
4+
* Version: 0.11.1 - 2015-03-09T14:30:26.112Z
55
* License: MIT
66
*/
77

Diff for: ‎dist/select.js

+5-3
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.11.0 - 2015-03-09T00:55:08.441Z
4+
* Version: 0.11.1 - 2015-03-09T14:30:26.109Z
55
* License: MIT
66
*/
77

@@ -1236,8 +1236,10 @@ uis.directive('uiSelect',
12361236
attrs.$observe('disabled', function() {
12371237
// No need to use $eval() (thanks to ng-disabled) since we already get a boolean instead of a string
12381238
$select.disabled = attrs.disabled !== undefined ? attrs.disabled : false;
1239-
// As the search input field may now become visible, it may be necessary to recompute its size
1240-
$select.sizeSearchInput();
1239+
if ($select.multiple) {
1240+
// As the search input field may now become visible, it may be necessary to recompute its size
1241+
$select.sizeSearchInput();
1242+
}
12411243
});
12421244

12431245
attrs.$observe('resetSearchInput', function() {

Diff for: ‎dist/select.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎dist/select.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"repository": {
77
"url": "git://github.com/angular-ui/ui-select.git"
88
},
9-
"version": "0.11.0",
9+
"version": "0.11.1",
1010
"devDependencies": {
1111
"bower": "~1.3",
1212
"del": "~0.1.1",

0 commit comments

Comments
 (0)