Fix scrollbar position in ckeditor #296

pull/1/head
yflory 6 years ago
parent f5965716b6
commit cc3e6f3924

@ -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);

Loading…
Cancel
Save