https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113739

Revision: 113739
Author:   christian
Date:     2012-03-13 18:12:57 +0000 (Tue, 13 Mar 2012)
Log Message:
-----------
replacing showCursorAt calls with correct showCursor method

Modified Paths:
--------------
    trunk/extensions/VisualEditor/modules/ve/ce/ve.ce.Surface.js

Modified: trunk/extensions/VisualEditor/modules/ve/ce/ve.ce.Surface.js
===================================================================
--- trunk/extensions/VisualEditor/modules/ve/ce/ve.ce.Surface.js        
2012-03-13 18:12:15 UTC (rev 113738)
+++ trunk/extensions/VisualEditor/modules/ve/ce/ve.ce.Surface.js        
2012-03-13 18:12:57 UTC (rev 113739)
@@ -760,7 +760,7 @@
                cursorAt = selection.start;
        }
        this.documentView.renderContent();
-       this.showCursorAt(cursorAt);
+       this.showCursor(cursorAt);
        var _this = this;
        setTimeout( function() {
                _this.poll.prevText = _this.poll.prevHash = 
_this.poll.prevOffset = _this.poll.node = null;
@@ -819,7 +819,7 @@
                        this.model.getDocument().getRelativeContentOffset( 
selection.to, 1 );
        }
        this.documentView.renderContent();
-       this.showCursorAt(selection.to);
+       this.showCursor(selection.to);
        var _this = this;
        setTimeout( function() {
                _this.poll.prevText = _this.poll.prevHash = 
_this.poll.prevOffset = _this.poll.node = null;


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to