File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 3
3
require_once __DIR__ . '/functions.content.php ' ;
4
4
5
5
// Allow inline scripts on https://jqueryui.com/themeroller/
6
+ // Load scripts from download.jqueryui.com on https://jqueryui.com/download/
6
7
// Load styles from download.jqueryui.com on https://jqueryui.com/themeroller/
7
8
// Load images from download.jqueryui.com on https://jqueryui.com/themeroller/
9
+ // Allow form actions to download.jqueryui.com on https://jqueryui.com/download/
8
10
add_filter ( 'jq_content_security_policy ' , function ( $ policy ) {
11
+ $ policy [ 'script-src ' ] = "'self' code.jquery.com download.jqueryui.com " ;
9
12
$ policy [ 'style-src ' ] = "'self' 'unsafe-inline' code.jquery.com download.jqueryui.com " ;
10
13
$ policy [ 'img-src ' ] = "'self' data: code.jquery.com download.jqueryui.com " ;
14
+ $ policy [ 'form-action ' ] = "'self' download.jqueryui.com " ;
11
15
return $ policy ;
12
16
} );
You can’t perform that action at this time.
0 commit comments