2025.12.31 02:49:47 (cachyos.cmoser.eu)

This commit is contained in:
2025-12-31 02:49:47 +01:00
parent 6243f87732
commit a5722c163b
154 changed files with 35338 additions and 56 deletions

View File

@@ -0,0 +1,16 @@
'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;
}
}
}
}