mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
Bug 1867722 - [devtools] Add missing JSDoc description for InplaceEditor
options focusEditableFieldAfterApply
and focusEditableFieldContainerSelector
. r=devtools-reviewers,ochameau.
Differential Revision: https://phabricator.services.mozilla.com/D195222
This commit is contained in:
parent
49128d24a4
commit
dfc14b3a59
@ -161,7 +161,16 @@ function isKeyIn(key, ...keys) {
|
||||
* If true, show the suggestions in case that the current text becomes empty.
|
||||
* Defaults to false.
|
||||
* @param {Boolean} options.focusEditableFieldAfterApply
|
||||
* If true, try to focus the next editable field after the input value is commited.
|
||||
* When set to true, focusEditableFieldContainerSelector is mandatory.
|
||||
* If no editable field can be found within the element retrieved with
|
||||
* focusEditableFieldContainerSelector, the focus will be moved to the next focusable
|
||||
* element (which won't be an editable field)
|
||||
* @param {String} options.focusEditableFieldContainerSelector
|
||||
* A CSS selector that will be used to retrieve the container element into which
|
||||
* the next focused element should be in, when focusEditableFieldAfterApply
|
||||
* is set to true. This allows to bail out if we can't find a suitable
|
||||
* focusable field.
|
||||
*/
|
||||
function editableField(options) {
|
||||
return editableItem(options, function (element, event) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user