From a1c5f8017d8e93edc23f29b6a6c997bb846dec65 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 2 Aug 2014 22:00:58 -0700 Subject: [PATCH] Fixes issue where modal flickers when closing when using fade-in/fade-out animation, 500 ms delay wasn't enough so changed to 320 ms --- 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 6e2863b779..d108bdc28d 100644 --- a/js/angular/service/modal.js +++ b/js/angular/service/modal.js @@ -194,7 +194,7 @@ function($rootScope, $document, $compile, $timeout, $ionicPlatform, $ionicTempla return $timeout(function(){ $document[0].body.classList.remove(self.viewType + '-open'); self.el.classList.add('hide'); - }, self.hideDelay || 500); + }, self.hideDelay || 320); }, /**