File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
// Allow inline scripts and styles in API demos
4
4
add_filter ( 'jq_content_security_policy ' , function ( $ policy ) {
5
5
$ 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 " ;
7
7
return $ policy ;
8
8
} );
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ function jq_mobile_api_version_current() {
32
32
// Allow inline scripts and styles in API demos
33
33
add_filter ( 'jq_content_security_policy ' , function ( $ policy ) {
34
34
$ 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 " ;
36
36
return $ policy ;
37
37
} );
Original file line number Diff line number Diff line change @@ -28,6 +28,6 @@ function jq_ui_api_version_current() {
28
28
// Allow inline scripts and styles in API demos
29
29
add_filter ( 'jq_content_security_policy ' , function ( $ policy ) {
30
30
$ 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 " ;
32
32
return $ policy ;
33
33
} );
Original file line number Diff line number Diff line change @@ -265,9 +265,9 @@ function jq_content_security_policy() {
265
265
'default-src ' => "'self' " ,
266
266
'script-src ' => "'self' 'nonce- $ nonce' code.jquery.com " ,
267
267
// 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 " ,
269
269
// data: SVG images are used in typesense
270
- 'img-src ' => "'self' data: " ,
270
+ 'img-src ' => "'self' data: code.jquery.com " ,
271
271
'connect-src ' => "'self' typesense.jquery.com " ,
272
272
'font-src ' => "'self' " ,
273
273
'object-src ' => "'none' " ,
You can’t perform that action at this time.
0 commit comments