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.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dimirc committed Jul 28, 2015
1 parent 76bf9da commit 6862b1f
Show file tree
Hide file tree
Showing 6 changed files with 9 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.12.0",
"version": "0.12.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.12.0 - 2015-05-28T07:44:11.364Z
* Version: 0.12.1 - 2015-07-28T03:50:59.080Z
* License: MIT
*/

Expand Down
6 changes: 3 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.12.0 - 2015-05-28T07:44:11.360Z
* Version: 0.12.1 - 2015-07-28T03:50:59.076Z
* License: MIT
*/

Expand Down Expand Up @@ -1021,7 +1021,7 @@ uis.directive('uiSelect',
}

// Hide the dropdown so there is no flicker until $timeout is done executing.
dropdown[0].style.visibility = 'hidden';
dropdown[0].style.opacity = 0;

// Delay positioning the dropdown until all choices have been added so its height is correct.
$timeout(function(){
Expand All @@ -1036,7 +1036,7 @@ uis.directive('uiSelect',
}

// Display the dropdown once it has been positioned.
dropdown[0].style.visibility = '';
dropdown[0].style.opacity = 1;
});
} else {
if (dropdown === null) {
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.12.0",
"version": "0.12.1",
"devDependencies": {
"bower": "~1.3",
"del": "~0.1.1",
Expand Down

0 comments on commit 6862b1f

Please sign in to comment.