FIxed #109 - modal auto focus and unfocus on close

This commit is contained in:
Max Lynch
2013-11-10 18:43:09 -06:00
parent 94824c9a66
commit 787101708d
5 changed files with 43 additions and 0 deletions

View File

@ -14,11 +14,15 @@ angular.module('ionic.service.modal', ['ionic.service.templateLoad'])
$animate.enter(element, angular.element($document[0].body));
}
$animate.addClass(element, this.animation);
ionic.views.Modal.prototype.show.call(this);
},
// Hide the modal
hide: function() {
var element = angular.element(this.el);
$animate.removeClass(element, this.animation);
ionic.views.Modal.prototype.hide.call(this);
},
// Remove and destroy the modal scope

View File

@ -25,6 +25,7 @@
</header>
<content>
Realllllyyy long content
<input type="text">
<div style="height: 2000px; background-color: red;"></div>
</content>
</div>