Skip to content

Commit

Permalink
docs(tooltip): add ngSanitize to Plunker
Browse files Browse the repository at this point in the history
- Add ngSanitize to Plunkers for uib-tooltip-html and uib-popover-html Plunkers

Closes angular-ui#6165
Fixes angular-ui#6157
  • Loading branch information
wesleycho committed Aug 16, 2016
1 parent ca20be4 commit 5123e38
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 @@ -17,6 +17,7 @@ angular.module('plunker', [])
' <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="//ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular-sanitize.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 @@ -28,7 +29,7 @@ angular.module('plunker', [])
};

var scriptContent = function(content) {
return "angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);" + "\n" + content;
return "angular.module('ui.bootstrap.demo', ['ngAnimate', 'ngSanitize', 'ui.bootstrap']);" + "\n" + content;
};

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

0 comments on commit 5123e38

Please sign in to comment.