From 842b67c3b02c4c3efefbb3e71812f88a90c76fc4 Mon Sep 17 00:00:00 2001 From: plainkeyman Date: Sun, 17 Nov 2013 23:41:18 -0700 Subject: [PATCH] When animating the modal-backdrop (fade in), it would only animate once. Changing this allowed it to animate for every modal --- src/modal/modal.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modal/modal.js b/src/modal/modal.js index 5c0d418768..e1de22c436 100644 --- a/src/modal/modal.js +++ b/src/modal/modal.js @@ -63,6 +63,7 @@ angular.module('ui.bootstrap.modal', []) replace: true, templateUrl: 'template/modal/backdrop.html', link: function (scope, element, attrs) { + scope.animate = false; //trigger CSS transitions $timeout(function () {