Project

General

Profile

Bug #88710

Updated by Jan Kiesewetter almost 5 years ago

In rte_ckeditor it is possible to configure the classes the link browser offers to select: 

 <pre> 
 buttons: 
   link: 
     properties: 
       class: 
         allowedClasses: 
         - external-link 
         - external-link-new-window 

     url: 
       properties: 
         class: 
           default: "external-link" 


 classesAnchor: 
   externalLink: 
     class: "external-link" 
     type: "url" 
     titleText: "LLL:EXT:sitepackage/Resources/Private/Language/locallang.xlf:rte.external_link_titleText" 

   externalLinkInNewWindow: 
     class: "external-link-new-window" 
     type: "url" 
     target: "_blank" 
     titleText: "LLL:EXT:sitepackage/Resources/Private/Language/locallang.xlf:rte.external_link_new_window_titleText" 
 </pre> 

 There are some problems with the link browser right now: 

 # The wrong title text is set during load 
 # The title text don't change during changing the tabs 
 # The target don't change to the configured one 
 # After some changes, it don't change the title text anymore 

 See the video for more details. 

Back