From a7517e2b79e0c8c717bf83b99e56e5e2a7bfefc7 Mon Sep 17 00:00:00 2001 From: Ryan Hendry Date: Thu, 6 Aug 2015 15:22:45 +0100 Subject: [PATCH] style(ngAnimate): add missing semi-colon Adding missing semi-colon which is breaking minification Closes #12513 --- src/ngAnimate/shared.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js index f23c66b2a2b9..f0f353e83bb4 100644 --- a/src/ngAnimate/shared.js +++ b/src/ngAnimate/shared.js @@ -69,7 +69,7 @@ var TRANSITION_DURATION_PROP = TRANSITION_PROP + DURATION_KEY; var isPromiseLike = function(p) { return p && p.then ? true : false; -} +}; function assertArg(arg, name, reason) { if (!arg) {