changed repo structure
This commit is contained in:
6328
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.bundle.js
vendored
Normal file
6328
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.bundle.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.bundle.min.js
vendored
Normal file
7
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3894
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.js
vendored
Normal file
3894
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.min.js
vendored
Normal file
7
2024/cscg/misc/can-i-haz-lolpython/src/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
13
2024/cscg/misc/can-i-haz-lolpython/src/js/rockstar.js
Normal file
13
2024/cscg/misc/can-i-haz-lolpython/src/js/rockstar.js
Normal file
@@ -0,0 +1,13 @@
|
||||
function transpile() {
|
||||
|
||||
var data = {"code": document.getElementById("in").value};
|
||||
console.log(data);
|
||||
|
||||
$.post({
|
||||
url: "transpile.php",
|
||||
data: JSON.stringify(data)
|
||||
}).done(function( data ) {
|
||||
var json_data = JSON.parse(data)
|
||||
document.getElementById("output").value = json_data["result"];
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user