Commit 404e2c86 authored by Yusei Tahara's avatar Yusei Tahara

Use event.target. Do not use event.srcElement.

parent 3d42e2b9
...@@ -120,7 +120,7 @@ function loopEventListener(target, type, useCapture, callback) {\n ...@@ -120,7 +120,7 @@ function loopEventListener(target, type, useCapture, callback) {\n
);\n );\n
})\n })\n
.push(function (data) {\n .push(function (data) {\n
event.srcElement.parentElement.parentElement.querySelectorAll(\n event.target.parentElement.parentElement.querySelectorAll(\n
".listbox-table-data-cell")[2].innerHTML = data.target.response;\n ".listbox-table-data-cell")[2].innerHTML = data.target.response;\n
});\n });\n
}\n }\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment