Skip to content

Commit b5229b1

Browse files
committed
jquerymobile.com: add CSP exceptions for mobile download builder
Fixes jquery/jquerymobile.com#179
1 parent a65e3b0 commit b5229b1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

themes/jquerymobile.com/functions.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
// Allow inline scripts and styles in API demos
4+
// Allow flickr script and images on https://api.jquery.com/jQuery.getJSON/
5+
add_filter( 'jq_content_security_policy', function ( $policy ) {
6+
$policy[ 'script-src' ] = "'self' code.jquery.com cdnjs.cloudflare.com";
7+
$policy[ 'connect-src' ] = "'self' typesense.jquery.com *.jquerymobile.com";
8+
return $policy;
9+
} );

0 commit comments

Comments
 (0)