Skip to content

Instantly share code, notes, and snippets.

@jsieber
Forked from stevewithington/onSiteCKFinder.cfm
Last active August 29, 2015 14:08
Show Gist options
  • Save jsieber/f03cbd43149c3fc6ab48 to your computer and use it in GitHub Desktop.
Save jsieber/f03cbd43149c3fc6ab48 to your computer and use it in GitHub Desktop.
<cfscript>
// drop this in your eventHandler.cfc
public void function onSiteCKFinderConfig($) {
var config = arguments.$.event('config');
// Override CKFinder's default image compression settings to allow for hi-res images
config.images.maxWidth = 0;
config.images.maxHeight = 0;
config.images.quality = 100;
arguments.$.event('config',config);
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment