Fix focus issues with the history input in ckeditor

pull/1/head
yflory 8 years ago
parent f7e96b4e8c
commit 4c3e842664

@ -146,7 +146,10 @@ define([
'type' : 'number', 'type' : 'number',
'min' : '1', 'min' : '1',
'max' : states.length 'max' : states.length
}).val(c + 1).appendTo($nav); }).val(c + 1).appendTo($nav).mousedown(function (e) {
// stopPropagation because the event would be cancelled by the dropdown menus
e.stopPropagation();
});
var $label = $('<label>').text(' / '+ states.length).appendTo($nav); var $label = $('<label>').text(' / '+ states.length).appendTo($nav);
var $goTo = $('<button>', { var $goTo = $('<button>', {
'class': 'fa fa-check', 'class': 'fa fa-check',

Loading…
Cancel
Save