| | 291 | if ( wpLink.isMCE() ) { |
| | 292 | selectedText = tinyMCEPopup.editor.selection.getContent( { format: 'text' } ); |
| | 293 | } else { |
| | 294 | if ( document.selection && wpLink.range ) { |
| | 295 | selectedText = wpLink.range.text; |
| | 296 | } else if ( typeof textarea.selectionStart !== 'undefined' ) { |
| | 297 | selectedText = textarea.value.substring( textarea.selectionStart, textarea.selectionEnd ); |
| | 298 | } |
| | 299 | } |
| | 300 | if ( selectedText && ( selectedText = selectedText.replace( /^\s+|\s+$/g, '' ) ) ) { |
| | 301 | if ( ! $('#search-panel').is(':visible') ) |
| | 302 | $('#internal-toggle').trigger('click'); |
| | 303 | inputs.search.val( selectedText ).trigger('keyup'); |
| | 304 | } |