12 lines
279 B
JavaScript
Raw Normal View History

2022-12-27 03:40:57 -08:00
// TODO - need to pass in environment variable for the domain name
console.log('execd')
$(document).ready(function() {
console.log('doc ready')
$('#testing-button').click(function() {
console.log('clicked')
$.get('/api/', function(data) {
console.log(data);
})
})
})