vendor/assets/javascripts/angular-animate.js in angular-gem-1.2.10 vs vendor/assets/javascripts/angular-animate.js in angular-gem-1.2.11
- old
+ new
@@ -1,7 +1,7 @@
/**
- * @license AngularJS v1.2.10
+ * @license AngularJS v1.2.9
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular, undefined) {'use strict';
@@ -832,13 +832,10 @@
fireDOMCallback('after');
});
}
function fireDoneCallbackAsync() {
- async(function() {
- fireDOMCallback('close');
- doneCallback && doneCallback();
- });
+ doneCallback && async(doneCallback);
}
//it is less complicated to use a flag than managing and cancelling
//timeouts containing multiple callbacks.
function fireDOMOperation() {