mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
$('#import-click').on('click', () => {
|
|
data = {
|
|
refid: $('#refid').val(),
|
|
profile: $('#profile').val(),
|
|
scores: $('#scores').val()
|
|
}
|
|
|
|
emit('importPnmData', data).then(() => {
|
|
$('#import-success').removeClass("is-hidden");
|
|
});
|
|
});
|