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
  • Loading branch information
TheRusskiy committed Apr 23, 2015
2 parents fd71f1d + d35c9db commit 54e380e
Show file tree
Hide file tree
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 <dimanrussian@gmail.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion demo/ng-slide-down.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
return element.css({
overflow: 'visible',
transition: 'none',
height: 'initial'
height: 'auto'
});
}, duration * 1000);
});
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-slide-down.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
return element.css({
overflow: 'visible',
transition: 'none',
height: 'initial'
height: 'auto'
});
}, duration * 1000);
});
Expand Down
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
Expand Up @@ -38,7 +38,7 @@ angular.module("ng-slide-down", []).directive "ngSlideDown", ($timeout )->
element.css {
overflow: "visible"
transition: "none",
height: "initial"
height: "auto"
}
, duration*1000

Expand Down

0 comments on commit 54e380e

Please sign in to comment.