|
|
@ -439,13 +439,11 @@ define('composer', [
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function focusElements(postContainer) {
|
|
|
|
function focusElements(postContainer) {
|
|
|
|
var title = postContainer.find('.title'),
|
|
|
|
var title = postContainer.find('input.title');
|
|
|
|
bodyEl = postContainer.find('textarea');
|
|
|
|
if (title.length) {
|
|
|
|
|
|
|
|
|
|
|
|
if (title.is(':disabled')) {
|
|
|
|
|
|
|
|
bodyEl.focus().putCursorAtEnd();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
title.focus();
|
|
|
|
title.focus();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
postContainer.find('textarea').focus().putCursorAtEnd();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|