ANimationed action sheet!

This commit is contained in:
Max Lynch
2013-10-04 23:55:10 -05:00
parent 2938e104c2
commit 5cc7070c03
9 changed files with 42 additions and 12 deletions

5
dist/ionic.js vendored
View File

@ -1743,9 +1743,14 @@ window.ionic = {
ionic.views.ActionSheet.prototype = {
show: function() {
// Force a reflow so the animation will actually run
this.el.offsetWidth;
this.el.classList.add('active');
},
hide: function() {
// Force a reflow so the animation will actually run
this.el.offsetWidth;
this.el.classList.remove('active');
}
};