mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
c7c2855ed1
Fixes gh-3541 Closes gh-4269
9 lines
244 B
JavaScript
9 lines
244 B
JavaScript
/* global startIframeTest */
|
|
|
|
jQuery( function() {
|
|
var script = document.createElement( "script" );
|
|
script.setAttribute( "nonce", "jquery+hardcoded+nonce" );
|
|
script.innerHTML = "startIframeTest()";
|
|
$( document.head ).append( script );
|
|
} );
|