Wildcards are accepted, but only as a scheme, a port, or in the leftmost position of the hostname:
*://*.example.com:*
...this would match all subdomains of example.com (but not example.com itself), using any scheme, on any port.
The key here, for you, might be the part in bold above.
You're specifying:
localhost:1337
*.ajax.aspnetcdn.com
But yet calling
http://ajax.aspnetcdn.com
http://localhost:1337
Maybe change to
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' *.azure-mobile.net http://localhost:1337 http://ajax.aspnetcdn.com">
I'm specifying port, but you could replace "http" with *
Hopefully this helps, or leads you in right direction.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…