2016-10-22 23:59:55 +00:00

20 lines
404 B
JavaScript

'use strict';
(function() {
var button = document.getElementById('button');
var result = document.getElementById('result');
button.addEventListener('click', function() {
fetch(window.config.apiUrl + '/hello', { method: 'GET' })
.then(function (response) {
return response.text();
})
.then(function (body) {
result.innerHTML += body;
});
});
})();