Last active
August 29, 2015 13:57
-
-
Save kand/9494500 to your computer and use it in GitHub Desktop.
In some cases, a component does not need to have a target button in its edit bar. To deactivate the Target button for a component, the cq:disableTargeting property must be set.
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" | |
jcr:primaryType="cq:EditConfig" | |
cq:disableTargeting="true"> | |
<!-- rest of config goes here --> | |
</jcr:root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment