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

Commit

Permalink
chore(build): v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dimirc committed Mar 9, 2015
1 parent 27c565e commit 032b152
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui-select",
"version": "0.11.0",
"version": "0.11.1",
"homepage": "https://github.com/angular-ui/ui-select",
"authors": [
"AngularUI"
Expand Down
2 changes: 1 addition & 1 deletion dist/select.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* ui-select
* http://github.com/angular-ui/ui-select
* Version: 0.11.0 - 2015-03-09T00:55:08.444Z
* Version: 0.11.1 - 2015-03-09T14:30:26.112Z
* License: MIT
*/

Expand Down
8 changes: 5 additions & 3 deletions dist/select.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* ui-select
* http://github.com/angular-ui/ui-select
* Version: 0.11.0 - 2015-03-09T00:55:08.441Z
* Version: 0.11.1 - 2015-03-09T14:30:26.109Z
* License: MIT
*/

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

attrs.$observe('resetSearchInput', function() {
Expand Down
2 changes: 1 addition & 1 deletion dist/select.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/select.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"repository": {
"url": "git://github.com/angular-ui/ui-select.git"
},
"version": "0.11.0",
"version": "0.11.1",
"devDependencies": {
"bower": "~1.3",
"del": "~0.1.1",
Expand Down

0 comments on commit 032b152

Please sign in to comment.