jquery.textSelection: Remove hardcoded checks for removed WikiEditor iframe mode
authorBartosz Dziewoński <matma.rex@gmail.com>
Wed, 30 Apr 2014 17:59:33 +0000 (19:59 +0200)
committerBartosz Dziewoński <matma.rex@gmail.com>
Wed, 30 Apr 2014 17:59:33 +0000 (19:59 +0200)
Bug: 29328
Change-Id: I6c813cb5601bf79375444b4a1c598218102ce321

resources/src/jquery/jquery.textSelection.js

index 042db91..76e9601 100644 (file)
@@ -24,9 +24,6 @@
 
        $.fn.textSelection = function ( command, options ) {
                var fn,
-                       context,
-                       hasIframe,
-                       needSave,
                        retval;
 
                /**
                                                        // See bug 35201.
 
                                                        activateElementOnIE( this );
-                                                       if ( context ) {
-                                                               context.fn.restoreCursorAndScrollTop();
-                                                       }
                                                        if ( options.selectionStart !== undefined ) {
                                                                $( this ).textSelection( 'setSelection', { 'start': options.selectionStart, 'end': options.selectionEnd } );
                                                        }
                                        // Position to start selection at
                                        start: undefined,
                                        // Position to end selection at. Defaults to start
-                                       end: undefined,
-                                       // Element to start selection in (iframe only)
-                                       startContainer: undefined,
-                                       // Element to end selection in (iframe only). Defaults to startContainer
-                                       endContainer: undefined
+                                       end: undefined
                                }, options );
 
                                if ( options.end === undefined ) {
                                        options.end = options.start;
                                }
-                               if ( options.endContainer === undefined ) {
-                                       options.endContainer = options.startContainer;
-                               }
                                // FIXME: We may not need character position-based functions if we insert markers in the right places
                                break;
                        case 'scrollToCaretPosition':
                                break;
                }
 
-               context = $( this ).data( 'wikiEditor-context' );
-               hasIframe = context !== undefined && context && context.$iframe !== undefined;
-
-               // IE selection restore voodoo
-               needSave = false;
-               if ( hasIframe && context.savedSelection !== null ) {
-                       context.fn.restoreSelection();
-                       needSave = true;
-               }
-               retval = ( hasIframe ? context.fn : fn )[command].call( this, options );
-               if ( hasIframe && needSave ) {
-                       context.fn.saveSelection();
-               }
+               retval = fn[command].call( this, options );
 
                return retval;
        };