(e)
| 6843 | |
| 6844 | function e_target(e) {return e.target || e.srcElement;} |
| 6845 | function e_button(e) { |
| 6846 | var b = e.which; |
| 6847 | if (b == null) { |
| 6848 | if (e.button & 1) b = 1; |
| 6849 | else if (e.button & 2) b = 3; |
| 6850 | else if (e.button & 4) b = 2; |
| 6851 | } |
| 6852 | if (mac && e.ctrlKey && b == 1) b = 3; |
| 6853 | return b; |
| 6854 | } |
| 6855 | |
| 6856 | // EVENT HANDLING |
| 6857 |
no outgoing calls
no test coverage detected
searching dependent graphs…