Fix focus issues with the history input in ckeditor
parent
f7e96b4e8c
commit
4c3e842664
|
@ -146,7 +146,10 @@ define([
|
|||
'type' : 'number',
|
||||
'min' : '1',
|
||||
'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 $goTo = $('<button>', {
|
||||
'class': 'fa fa-check',
|
||||
|
|
Loading…
Reference in New Issue