Commit c19ac107 authored by Sergey Antonovich's avatar Sergey Antonovich 🇯🇵

Update custom-button.md

parent 22165923
......@@ -13,8 +13,17 @@
* Добавить пользовательский компонент с названием `button by [0x00034]` и внести в него скрипт.
```javascript
model.setValue('Button');
model.click = function(){
model.setValue('Button'); // Название кнопки
model.click = function(){ // Событие клик - сработает при нажатии
alert('Hello World!');
};
/**
* Все события
*
click - При клике
mousedown - При зажатие
mouseup - После отжатия
mouseenter - При наведении
mouseleave - После наведения
*/
```
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment