mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
16 lines
360 B
JavaScript
16 lines
360 B
JavaScript
angular.module('myApp', [])
|
|
.directive('myCustomer', function() {
|
|
return {
|
|
templateUrl: "SAFE"
|
|
}
|
|
})
|
|
.directive('myCustomer', function() {
|
|
return {
|
|
templateUrl: Cookie.get("unsafe") // $ Alert
|
|
}
|
|
});
|
|
|
|
addEventListener('message', (ev) => { // $ Source
|
|
Cookie.set("unsafe", ev.data);
|
|
});
|