Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit a8a22cf

Browse files
committed
feat(docs): add ngAnimate Plunker support
- Adds support to autogenerated Plunkers to use ngAnimate out the gate Closes #3648 Closes #4072
1 parent 8056368 commit a8a22cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

misc/demo/assets/plunker.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ angular.module('plunker', [])
1616
'<html ng-app="ui.bootstrap.demo">\n' +
1717
' <head>\n' +
1818
' <script src="//ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular.js"></script>\n' +
19+
' <script src="//ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular-animate.js"></script>\n' +
1920
' <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-'+version+'.js"></script>\n' +
2021
' <script src="example.js"></script>\n' +
2122
' <link href="//netdna.bootstrapcdn.com/bootstrap/'+bsVersion+'/css/bootstrap.min.css" rel="stylesheet">\n' +
@@ -27,7 +28,7 @@ angular.module('plunker', [])
2728
};
2829

2930
var scriptContent = function(content) {
30-
return "angular.module('ui.bootstrap.demo', ['ui.bootstrap']);" + "\n" + content;
31+
return "angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);" + "\n" + content;
3132
};
3233

3334
addField('description', 'http://angular-ui.github.io/bootstrap/');

0 commit comments

Comments
 (0)