Do not translate input type=password
This commit is contained in:
parent
66ad4e9278
commit
71339ce56a
|
@ -14,6 +14,8 @@ window.addEventListener("mouseup", Select, false);
|
||||||
//テキスト選択時の処理 ダブルクリックした時2回処理が走るのを何とかしたい
|
//テキスト選択時の処理 ダブルクリックした時2回処理が走るのを何とかしたい
|
||||||
function Select(e) {
|
function Select(e) {
|
||||||
hidePanel(e);
|
hidePanel(e);
|
||||||
|
if (e.target.tagName == "INPUT" && e.target.type == "password") return;
|
||||||
|
|
||||||
setTimeout(function () { //誤動作防止の為ディレイを設ける
|
setTimeout(function () { //誤動作防止の為ディレイを設ける
|
||||||
if (e.target.tagName == "INPUT" || e.target.tagName == "TEXTAREA") {
|
if (e.target.tagName == "INPUT" || e.target.tagName == "TEXTAREA") {
|
||||||
selectionWord = e.target.value.substring(e.target.selectionStart, e.target.selectionEnd);
|
selectionWord = e.target.value.substring(e.target.selectionStart, e.target.selectionEnd);
|
||||||
|
|
Loading…
Reference in a new issue