code review

pull/2/head
Raymond Hill 11 years ago
parent 5e19edaab7
commit 5f3dc76b32

@ -728,11 +728,9 @@ var onMainDocHeadersReceived = function(details) {
// https://github.com/gorhill/httpswitchboard/issues/181 // https://github.com/gorhill/httpswitchboard/issues/181
if ( csp !== '' ) { if ( csp !== '' ) {
// If javascript not allowed, say so through a `Content-Security-Policy` directive.
// console.debug('onMainDocHeadersReceived()> PAGE CSP "%s": %o', details.url, details);
headers.push({ headers.push({
'name': 'Content-Security-Policy', 'name': 'Content-Security-Policy',
'value': csp 'value': csp.trim()
}); });
return { responseHeaders: headers }; return { responseHeaders: headers };
} }

Loading…
Cancel
Save