Fix scrollbar position in ckeditor #296

pull/1/head
yflory 2018-11-27 14:07:17 +01:00
parent f5965716b6
commit cc3e6f3924
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ define([
// Fix the scrollbar if it's reset when clicking on a button (firefox only?)
var buttonScrollTop;
$('.cke_toolbox_main').find('.cke_button').mousedown(function () {
$('.cke_toolbox_main').find('.cke_button, .cke_combo_button').mousedown(function () {
buttonScrollTop = $('iframe').contents().scrollTop();
setTimeout(function () {
$('iframe').contents().scrollTop(buttonScrollTop);