mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-27 17:08:40 +00:00
Fix bug where input elements got selected multiple times
This commit is contained in:
parent
867ce48dd0
commit
5c04a6ec4c
|
|
@ -279,7 +279,7 @@ export class FormView {
|
|||
inputs = [].slice.call(form.getElementsByTagName('input')),
|
||||
buttons = form.getElementsByTagName('button'),
|
||||
canvas = form.getElementsByTagName('canvas'),
|
||||
external = document.querySelectorAll('body:not(#' + this.id + ') [form=' + this.id + ']'),
|
||||
external = document.querySelectorAll('form:not(#' + this.id + ') [form=' + this.id + ']'),
|
||||
special = form.querySelectorAll('[data-name]'),
|
||||
specialExt = document.querySelectorAll('form:not(#' + this.id + ') [data-form=' + this.id + '] [data-name]'),
|
||||
inputLength = inputs.length;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user