The code: ``` configureTaffy(){ enableCrossDomainAccess(true); } ``` Should add the following header to every response: ``` <cfheader name="Access-Control-Allow-Origin" value="*" /> ```
Activity
atuttle commentedon Jan 22, 2011
The alternative to "*" is a comma-delimited list of allowed domains, eg:
atuttle commentedon Feb 10, 2011
Completed: d8d94fb
Resolves Ticket atuttle#20; enables cross-domain access via a config …