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.

19 lines
505B

  1. function Пульт(имяОбласти, имяПуска)
  2. {
  3. this.создать = function()
  4. {
  5. this.настроитьКнопкуПуска();
  6. };
  7. this.настроитьКнопкуПуска = function()
  8. {
  9. var пуск = document.getElementById(имяПуска);
  10. пуск.addEventListener("click", function(событие) {
  11. /**/console.debug("НАДО запустить");
  12. });
  13. };
  14. // Конструктор.
  15. this.создать();
  16. }