Opened 14 years ago

Closed 14 years ago

#5581 closed Bug (duplicate)

Jumping scrollbar in IE7

Reported by: phil Owned by:
Priority: Normal Milestone:
Component: General Version: 3.2.1
Keywords: Cc: philip_andrew@…

Description

In ie7, I go to http://ckeditor.com/demo

Click on the word Red in little red riding hood, just put the cursor somewhere there by clicking on the text.

Use the scrollbar to scroll down (down button on scrollbar, not the scrollbar itself, use down button).

Cannot scroll down, the focus jumps back to the cursor at the top of the page, so the whole page jumps back upwards.

This is a serious problem for my customer as they can only use IE7.

Change History (3)

comment:1 Changed 14 years ago by Frederico Caldeira Knabben

Priority: HighNormal
Resolution: duplicate
Status: newclosed

DUP of #5280

comment:2 Changed 14 years ago by phil

Cc: philip_andrew@… added
Resolution: duplicate
Status: closedreopened

Hi,

I applied your patch and it didn't fix this bug. Please re-test this.

I found I can fix this bug by commenting out the following code in plugin.js in /plugins/selection/plugin.js

// IE before version 8 will leave cursor blinking inside the document after
// editor blurred unless we clean up the selection. (#4716)
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )
{
doc.getWindow().on( 'blur', function( evt )
{
editor.document.$.selection.empty();
});
}

Thanks, Philip

comment:3 Changed 14 years ago by Tobiasz Cudnik

Resolution: duplicate
Status: reopenedclosed

I've moved your reproduction scenario and proposed fix to ticket in which we're working on this issue. Please post any future comments there.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy