Ticket #8361: 8361.patch

File 8361.patch, 1.0 KB (added by Garry Yao, 13 years ago)
  • _source/plugins/link/dialogs/link.js

     
    13311331                        // Browser need the "href" fro copy/paste link to work. (#6641)
    13321332                        attributes.href = attributes[ 'data-cke-saved-href' ];
    13331333
     1334                        // Create element if current selection is collapsed.
     1335                        var selection = editor.getSelection();
     1336
    13341337                        if ( !this._.selectedElement )
    13351338                        {
    1336                                 // Create element if current selection is collapsed.
    1337                                 var selection = editor.getSelection(),
    1338                                         ranges = selection.getRanges( true );
     1339                                var ranges = selection.getRanges( true );
    13391340                                if ( ranges.length == 1 && ranges[0].collapsed )
    13401341                                {
    13411342                                        // Short mailto link text view (#5736).
     
    13721373                                                data.email.address : attributes[ 'data-cke-saved-href' ] );
    13731374                                }
    13741375
     1376                                selection.selectElement( element );
    13751377                                delete this._.selectedElement;
    13761378                        }
    13771379                },
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy