Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <RTE
  2. jcr:primaryType="cq:Widget"
  3. fieldLabel="rte"
  4. name="./rte"
  5. xtype="richtext">
  6. <listeners
  7. jcr:primaryType="nt:unstructured"
  8. destroy="function() {this.el.dom={};}"/>
  9. <rtePlugins
  10. jcr:primaryType="cq:Widget"
  11. path="/apps/components/content/rteconfig/rtePlugins.infinity.json"
  12. xtype="cqinclude"/>
  13. </RTE>
  14.  
  15. var rte = {
  16. fieldLabel: 'rte',
  17. name: 'rte',
  18. xtype: 'richtext',
  19. listeners: {
  20. destroy: function(){
  21. this.el.dom={};
  22. }
  23. },
  24. rtePlugins : {
  25. path: '/apps/components/content/rteconfig/rtePlugins.infinity.json',
  26. xtype:'cqinclude'
  27. }
  28. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement