aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/animator.js
diff options
context:
space:
mode:
authorMisko Hevery2013-04-03 14:55:03 -0700
committerMisko Hevery2013-04-03 15:20:53 -0700
commitecdf119a76476f2a57105a3170be4075e43765c3 (patch)
treed9f147aaaddb9a2f0079c81be1e334425ee80153 /src/ng/animator.js
parent820253f6708731388a47bc65124e2a457f0536d8 (diff)
downloadangular.js-ecdf119a76476f2a57105a3170be4075e43765c3.tar.bz2
fix(ngShow/ngHide): revert to display:'' for show
Regression introduced by ngAnimation SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413
Diffstat (limited to 'src/ng/animator.js')
-rw-r--r--src/ng/animator.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/animator.js b/src/ng/animator.js
index 059e7684..f3714db8 100644
--- a/src/ng/animator.js
+++ b/src/ng/animator.js
@@ -283,7 +283,7 @@ var $AnimatorProvider = function() {
}
function show(element) {
- element.css('display', 'block');
+ element.css('display', '');
}
function hide(element) {