(evt)
| 3630 | } |
| 3631 | |
| 3632 | function selectAll(evt) { |
| 3633 | setSelection(0, curtext.textContent.length); |
| 3634 | $(this).unbind(evt); |
| 3635 | } |
| 3636 | |
| 3637 | function selectWord(evt) { |
| 3638 | if(!allow_dbl || !curtext) return; |
nothing calls this directly
no test coverage detected