Skip to content

Commit 0f7a2ba

Browse files
committed
jqueryui.com: add CSP exceptions for themeroller
Ref jquery/infrastructure-puppet#54 Ref gh-474
1 parent 1a47589 commit 0f7a2ba

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

themes/jqueryui.com/functions.php

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
<?php
22

33
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

Comments
 (0)