mirror of
https://github.com/asphyxia-core/plugin-template.git
synced 2026-03-22 09:45:04 -05:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
$('#plugin-click').on('click', () => {
|
|
emit('click').then(() => {
|
|
location.reload();
|
|
});
|
|
});
|
|
|
|
$('#plugin-random').on('click', () => {
|
|
emit('random').then(result => {
|
|
$('#random-number').text(result.data.number);
|
|
});
|
|
});
|