Skip to content

Commit 1eaa3fd

Browse files
authored
functions: allow loading styles and images from the jQuery CDN
Ref jquery/infrastructure-puppet#54 Closes gh-471
1 parent 7273897 commit 1eaa3fd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

themes/api.jquery.com/functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
// Allow inline scripts and styles in API demos
44
add_filter( 'jq_content_security_policy', function ( $policy ) {
55
$policy[ 'script-src' ] = "'self' 'unsafe-inline' code.jquery.com";
6-
$policy[ 'style-src' ] = "'self' 'unsafe-inline'";
6+
$policy[ 'style-src' ] = "'self' 'unsafe-inline' code.jquery.com";
77
return $policy;
88
} );

themes/api.jquerymobile.com/functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ function jq_mobile_api_version_current() {
3232
// Allow inline scripts and styles in API demos
3333
add_filter( 'jq_content_security_policy', function ( $policy ) {
3434
$policy[ 'script-src' ] = "'self' 'unsafe-inline' code.jquery.com";
35-
$policy[ 'style-src' ] = "'self' 'unsafe-inline'";
35+
$policy[ 'style-src' ] = "'self' 'unsafe-inline' code.jquery.com";
3636
return $policy;
3737
} );

themes/api.jqueryui.com/functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ function jq_ui_api_version_current() {
2828
// Allow inline scripts and styles in API demos
2929
add_filter( 'jq_content_security_policy', function ( $policy ) {
3030
$policy[ 'script-src' ] = "'self' 'unsafe-inline' code.jquery.com";
31-
$policy[ 'style-src' ] = "'self' 'unsafe-inline'";
31+
$policy[ 'style-src' ] = "'self' 'unsafe-inline' code.jquery.com";
3232
return $policy;
3333
} );

themes/jquery/functions.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ function jq_content_security_policy() {
265265
'default-src' => "'self'",
266266
'script-src' => "'self' 'nonce-$nonce' code.jquery.com",
267267
// The nonce is here so inline scripts can be used in the theme
268-
'style-src' => "'self' 'nonce-$nonce'",
268+
'style-src' => "'self' 'nonce-$nonce' code.jquery.com",
269269
// data: SVG images are used in typesense
270-
'img-src' => "'self' data:",
270+
'img-src' => "'self' data: code.jquery.com",
271271
'connect-src' => "'self' typesense.jquery.com",
272272
'font-src' => "'self'",
273273
'object-src' => "'none'",

0 commit comments

Comments
 (0)