You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
331B

  1. function Мышь(события)
  2. {
  3. this.создать = function()
  4. {
  5. window.addEventListener("click", function(o) {
  6. события.уведомить(`мышь/нажатие/${o.clientX}/${o.clientY}/${o.target.id}`);
  7. });
  8. };
  9. // Конструктор.
  10. this.создать();
  11. };