From 83fd11c5655e38226029fc00c43b921430fb6b32 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 16 Apr 2014 15:04:17 -0500 Subject: [PATCH] fix(modal): Increase delay of removing .modal-open to prevent focus under modals --- js/angular/service/modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/angular/service/modal.js b/js/angular/service/modal.js index 647e31430f..5bc5943f78 100644 --- a/js/angular/service/modal.js +++ b/js/angular/service/modal.js @@ -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); }, /**