You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
606 B
16 lines
606 B
'use strict'; |
|
{ |
|
const inputTags = ['BUTTON', 'INPUT', 'SELECT', 'TEXTAREA']; |
|
const modelName = document.getElementById('django-admin-form-add-constants').dataset.modelName; |
|
if (modelName) { |
|
const form = document.getElementById(modelName + '_form'); |
|
for (const element of form.elements) { |
|
// HTMLElement.offsetParent returns null when the element is not |
|
// rendered. |
|
if (inputTags.includes(element.tagName) && !element.disabled && element.offsetParent) { |
|
element.focus(); |
|
break; |
|
} |
|
} |
|
} |
|
}
|
|
|