From a8a22cff0618c1009f097eaf33cc95c5edbf93bb Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Sun, 2 Aug 2015 01:26:01 -0700 Subject: [PATCH] feat(docs): add ngAnimate Plunker support - Adds support to autogenerated Plunkers to use ngAnimate out the gate Closes #3648 Closes #4072 --- misc/demo/assets/plunker.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/demo/assets/plunker.js b/misc/demo/assets/plunker.js index 04a35eebba..1e586108ab 100644 --- a/misc/demo/assets/plunker.js +++ b/misc/demo/assets/plunker.js @@ -16,6 +16,7 @@ angular.module('plunker', []) '\n' + ' \n' + ' \n' + + ' \n' + ' \n' + ' \n' + ' \n' + @@ -27,7 +28,7 @@ angular.module('plunker', []) }; var scriptContent = function(content) { - return "angular.module('ui.bootstrap.demo', ['ui.bootstrap']);" + "\n" + content; + return "angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);" + "\n" + content; }; addField('description', 'http://angular-ui.github.io/bootstrap/');