- đŽđłIndia abhishek@kumar
ARIA Implementation:
// Example of potential ARIA announcement approach const announce = (message) => { const polite = document.getElementById('tabledrag-aria-live'); polite.textContent = message; }; announce(Drupal.t('Row moved to new position'));
Weight Input Replacement:
<!-- Current --> <select class="tabledrag-weight"> <option value="-15">-15</option> <!-- ... --> <option value="15">15</option> </select> <!-- Proposed --> <input type="number" class="tabledrag-weight" min="-50" max="50" step="1">
- đŠđ°Denmark ressa Copenhagen
Would an option to disable the "Show row weights" / "Hide row weights" toggle button, either completely or on a role-basis via Permissions fit in this issue as well, or maybe it is already handled in another issue, or need a new issue?
- @dcam opened merge request.