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

Commit

Permalink
feat(docs): add ngAnimate Plunker support
Browse files Browse the repository at this point in the history
- Adds support to autogenerated Plunkers to use ngAnimate out the gate

Closes #3648
Closes #4072
  • Loading branch information
wesleycho committed Aug 2, 2015
1 parent 8056368 commit a8a22cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion misc/demo/assets/plunker.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ angular.module('plunker', [])
'<html ng-app="ui.bootstrap.demo">\n' +
' <head>\n' +
' <script src="//ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular.js"></script>\n' +
' <script src="//ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular-animate.js"></script>\n' +
' <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-'+version+'.js"></script>\n' +
' <script src="example.js"></script>\n' +
' <link href="//netdna.bootstrapcdn.com/bootstrap/'+bsVersion+'/css/bootstrap.min.css" rel="stylesheet">\n' +
Expand All @@ -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/');
Expand Down

0 comments on commit a8a22cf

Please sign in to comment.