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

This commit is contained in:
David
2014-08-02 22:00:58 -07:00
parent 0edac30cec
commit a1c5f8017d

View File

@@ -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);
},
/**