Created
December 12, 2013 23:09
-
-
Save stevewithington/7937205 to your computer and use it in GitHub Desktop.
Mura CMS : If a File or Link content type is a child of the Folder, then we want users to go directly to the file or link ... otherwise, File and Link types linked elsewhere in Mura can be taken to a "Summary" view.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
// drop this in your Site or Theme eventHandler.cfc | |
public any function onRenderStart($) { | |
if ( $.event('showMeta') != 2 && $.content().getParent().getValue('type') != 'Folder' ) { | |
$.event('showMeta', 1); | |
} | |
} | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment