mirror of
https://github.com/github/codeql.git
synced 2026-03-09 17:16:46 +01:00
7 lines
253 B
JavaScript
7 lines
253 B
JavaScript
angular.module('app', [])
|
|
.controller('controller', function($scope, $sce) {
|
|
// ...
|
|
// GOOD (but should use the templating system instead)
|
|
$scope.html = $sce.trustAsHtml('<ul><li>' + item.toString() + '</li></ul>');
|
|
});
|