We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a65e3b0 commit b5229b1Copy full SHA for b5229b1
themes/jquerymobile.com/functions.php
@@ -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