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

Commit 6862b1f

Browse files
committed
chore(build): v0.12.1
1 parent 76bf9da commit 6862b1f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-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.12.0",
3+
"version": "0.12.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.12.0 - 2015-05-28T07:44:11.364Z
4+
* Version: 0.12.1 - 2015-07-28T03:50:59.080Z
55
* License: MIT
66
*/
77

Diff for: dist/select.js

+3-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.12.0 - 2015-05-28T07:44:11.360Z
4+
* Version: 0.12.1 - 2015-07-28T03:50:59.076Z
55
* License: MIT
66
*/
77

@@ -1021,7 +1021,7 @@ uis.directive('uiSelect',
10211021
}
10221022

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

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

10381038
// Display the dropdown once it has been positioned.
1039-
dropdown[0].style.visibility = '';
1039+
dropdown[0].style.opacity = 1;
10401040
});
10411041
} else {
10421042
if (dropdown === null) {

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.12.0",
9+
"version": "0.12.1",
1010
"devDependencies": {
1111
"bower": "~1.3",
1212
"del": "~0.1.1",

0 commit comments

Comments
 (0)