Add containerization and make this bad boy work on Windows and MacOS

This commit is contained in:
omer
2024-02-28 19:08:07 -06:00
parent d58a0543eb
commit df7a63e047
557 changed files with 6647 additions and 5493 deletions
-20
View File
@@ -358,26 +358,6 @@ $for s in loaded:
$$("#chooseDeck").html("Choose from " + ncards + " cards");
$$("#mod_create").click(function() {
var myObject = new Object();
myObject.name = $$("#mod_name").val();
myObject.url = $$("#mod_url").val();
jQuery.ajax({
type: "POST",
contentType: "application/json",
data: JSON.stringify(myObject),
success: function(data) {
if(data == 'fail') {
alert("Failed to created mod");
} else {
window.location.href = "/mod";
}
},
});
return false;
});
$$("#signin").click(function() {
var myObject = new Object();