Skip to content

Commit 12053c7

Browse files
authored
jqueryui.com: add CSP exceptions for download builder
Ref jquery/infrastructure-puppet#54 Closes gh-475
1 parent 239b9f3 commit 12053c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

themes/jqueryui.com/functions.php

+4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
require_once __DIR__ . '/functions.content.php';
44

55
// Allow inline scripts on https://jqueryui.com/themeroller/
6+
// Load scripts from download.jqueryui.com on https://jqueryui.com/download/
67
// Load styles from download.jqueryui.com on https://jqueryui.com/themeroller/
78
// Load images from download.jqueryui.com on https://jqueryui.com/themeroller/
9+
// Allow form actions to download.jqueryui.com on https://jqueryui.com/download/
810
add_filter( 'jq_content_security_policy', function ( $policy ) {
11+
$policy[ 'script-src' ] = "'self' code.jquery.com download.jqueryui.com";
912
$policy[ 'style-src' ] = "'self' 'unsafe-inline' code.jquery.com download.jqueryui.com";
1013
$policy[ 'img-src' ] = "'self' data: code.jquery.com download.jqueryui.com";
14+
$policy[ 'form-action' ] = "'self' download.jqueryui.com";
1115
return $policy;
1216
} );

0 commit comments

Comments
 (0)