@ David
Yes … I just tested with cMap to confirm (same core logic is use to find and load files). So either of these should work fine:
../themes/{theme-slug}/connections-templates/tile-plus/tile-plus.min.js
../themes/{theme-slug}/connections-templates/tile-plus/tile-plus.js
OR
../uploads/connections-templates/tile-plus/tile-plus.min.js
../uploads/connections-templates/tile-plus/tile-plus.js
If the core WP constant SCRIPT_DEBUG is set to false (default) and both files exist in the above path, the min file will load. If only one of the files exist in the above path, then the file found will be loaded.
Of the two paths listed above, the theme folder would have a higher order of preference, meaning if the files exists in both locations, the version in the theme folder would load and not the version in the uploads folder.
The contents of the file … I highly suggest using tile-plus.js as your base and then change the following line with the Chosen option you want:
$('#cn-tile-plus .cn-category-select.cn-enhanced-select').chosen();
Hope that helps, let me know!
