Skip to content

Commit

Permalink
fix(modal): Increase delay of removing .modal-open to prevent focus u…
Browse files Browse the repository at this point in the history
…nder modals
  • Loading branch information
Adam Bradley committed Apr 16, 2014
1 parent 8760de5 commit 83fd11c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/angular/service/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function($rootScope, $document, $compile, $timeout, $ionicPlatform, $ionicTempla
return $timeout(function(){
$document[0].body.classList.remove('modal-open');
self.el.classList.add('hide');
}, 350);
}, 500);
},

/**
Expand Down

0 comments on commit 83fd11c

Please sign in to comment.