This commit is contained in:
2019-09-02 19:32:05 +02:00
parent e9eac2e94b
commit f29bd12757
14 changed files with 410 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
var playerName = undefined;
var errorShown = false;
$(document).ready(_ => {
$('#form-ticket').on('submit', e => {
e.preventDefault();
var content = $("#textboxContent").val();
mp.trigger('report_submitText', content);
});
});