Skip to content

Commit

Permalink
Merge pull request #2 from chronogolf/master
Browse files Browse the repository at this point in the history
Fixed height after open on IE
TheRusskiy committed Apr 23, 2015

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents fd71f1d + d35c9db commit 54e380e
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-slide-down",
"version": "0.3.0",
"version": "0.3.1",
"authors": [
"TheRusskiy <[email protected]>"
],
2 changes: 1 addition & 1 deletion demo/ng-slide-down.js
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@
return element.css({
overflow: 'visible',
transition: 'none',
height: 'initial'
height: 'auto'
});
}, duration * 1000);
});
2 changes: 1 addition & 1 deletion dist/ng-slide-down.js
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@
return element.css({
overflow: 'visible',
transition: 'none',
height: 'initial'
height: 'auto'
});
}, duration * 1000);
});
4 changes: 2 additions & 2 deletions dist/ng-slide-down.min.js

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

2 changes: 1 addition & 1 deletion src/ng-slide-down.coffee
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ angular.module("ng-slide-down", []).directive "ngSlideDown", ($timeout )->
element.css {
overflow: "visible"
transition: "none",
height: "initial"
height: "auto"
}
, duration*1000

0 comments on commit 54e380e

Please sign in to comment.