03-07-2012 06:46 AM
03-07-2012 05:59 PM
<config replace="true">
<flags>
<client-debug>false</client-debug>
<client-debug-autologging>false</client-debug-autologging>
</flags>
</config>
If you have that flag set to false, it uses the minified version and if it is set to true it uses the non-minified version.03-08-2012 11:03 AM
Sounds like you are just playing around, but I feel duty-bound to tell you anyway: You probably shouldn't change the client-side JavaScript files. You should be able to extend those JavaScript components to add your own functionality. And when you do that, it is a really good idea to use your own namespace. If you need an example of how to do that, check out rule-config-action-custom.js script in the custom actions tutorial.
Still, what you are doing should be possible.
Make sure you have a non-minified version of the script called actions.js and a minified version of the script called actions-min.js. Share determines which one to use based on the client-debug flag in share-config-custom.xml:If you have that flag set to false, it uses the minified version and if it is set to true it uses the non-minified version.<config replace="true">
<flags>
<client-debug>false</client-debug>
<client-debug-autologging>false</client-debug-autologging>
</flags>
</config>
Maybe you didn't replace both the minified and the non-minified versions of the file and Share is using the one you didn't expect?
If that's not it and you are sure you've cleared your cache, you can always use Firebug or the equivalent JavaScript console in your browser to set some breakpoints and figure out what's going on.
Jeff
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.