first commit

This commit is contained in:
2024-10-25 14:16:28 +02:00
commit 925276dbb2
33795 changed files with 4780077 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
$(function () {
$('#bugReport').on('submit', function (e)
{
e.preventDefault();
console.log('tet');
msg = $('#bugReport #description').val();
title_ = $('#bugReport #title').val();
action = $('#bugReport').attr('action');
if (msg.length <= 0)
return false;
if (title_.length <= 0)
return false;
$("#bugReport")[0].reset();
$("#bugReportSuccess").removeClass('hidden');
$.post(action, {message: msg, title: title_});
});
});