mirror of
https://github.com/github/codeql.git
synced 2026-07-28 22:36:50 +02:00
10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
angular.module('myApp', [])
|
|
.config(function($sceDelegateProvider) {
|
|
$sceDelegateProvider.resourceUrlWhitelist([
|
|
"*://example.org/*", // BAD
|
|
"https://**.example.com/*", // BAD
|
|
"https://example.**", // BAD
|
|
"https://example.*" // BAD
|
|
]);
|
|
});
|