| 152 | | inputs.wrap.removeClass( 'has-text-field' ); |
| 153 | | inputs.text.val( '' ); |
| | 154 | // For the Text editor the "Link text" field is always shown |
| | 155 | if ( ! inputs.wrap.hasClass( 'has-text-field' ) ) { |
| | 156 | inputs.wrap.addClass( 'has-text-field' ); |
| | 157 | } |
| | 158 | |
| | 159 | if ( document.selection ) { |
| | 160 | // Old IE |
| | 161 | text = document.selection.createRange().text || ''; |
| | 162 | } else if ( typeof this.textarea.selectionStart !== 'undefined' && |
| | 163 | ( this.textarea.selectionStart !== this.textarea.selectionEnd ) ) { |
| | 164 | // W3C |
| | 165 | text = this.textarea.value.substring( this.textarea.selectionStart, this.textarea.selectionEnd ) || ''; |
| | 166 | } |
| | 167 | |
| | 168 | inputs.text.val( text ); |