Twitter Bootstrap2のmodal()でfocusが外れてしまうことへの対策
原因
犯人は、showメソッドの中で設定されている transitionend
イベント。
modalのセットされているjQueryオブジェクトにtransitionend
イベントが割り当てられ、その中でfocus()
が走るようになっている。
https://github.com/twbs/bootstrap/blob/v2.3.2/js/bootstrap-modal.js#L75-L77
|
|
対策
transitionend
イベントを止める。
[サンプル]
|
|
参考情報
その他
2017年にもなってBootstrap2……