We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a47589 commit 0f7a2baCopy full SHA for 0f7a2ba
themes/jqueryui.com/functions.php
@@ -1,3 +1,12 @@
1
<?php
2
3
require_once __DIR__ . '/functions.content.php';
4
+
5
+// Allow inline scripts on https://jqueryui.com/themeroller/
6
+// Load styles from download.jqueryui.com on https://jqueryui.com/themeroller/
7
+// Load images from download.jqueryui.com on https://jqueryui.com/themeroller/
8
+add_filter( 'jq_content_security_policy', function ( $policy ) {
9
+ $policy[ 'style-src' ] = "'self' 'unsafe-inline' code.jquery.com download.jqueryui.com";
10
+ $policy[ 'img-src' ] = "'self' data: code.jquery.com download.jqueryui.com";
11
+ return $policy;
12
+} );
0 commit comments