Apply new title when clicking on the page without pressing enter
This commit is contained in:
parent
ea8667302c
commit
99b8898e54
@ -556,12 +556,20 @@ define([
|
||||
$container.find('.cryptpad-dropdown').hide();
|
||||
};
|
||||
var cancelEditTitle = function (e) {
|
||||
// Now we want to apply the title even if we click somewhere else
|
||||
if ($(e.target).parents('.' + TITLE_CLS).length || !$titleElement) {
|
||||
return;
|
||||
}
|
||||
|
||||
var e = jQuery.Event("keyup");
|
||||
e.which = 13;
|
||||
$titleElement.find('input').trigger(e);
|
||||
|
||||
/*
|
||||
$titleElement.find('input').hide();
|
||||
$titleElement.find('span.title').show();
|
||||
$titleElement.find('span.pencilIcon').css('display', '');
|
||||
*/
|
||||
};
|
||||
$(config.ifrw).on('click', removeDropdowns);
|
||||
$(config.ifrw).on('click', cancelEditTitle);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user