good morning!!!!

Skip to content
Snippets Groups Projects
Commit b89d9f6e authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Added DApp url bar (TBD) & changed behaviour for the menu selection

parent d22db772
No related branches found
No related tags found
No related merge requests found
// this function is included locally, but you can also include separately via a header definition
function request(url, callback) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = (function(req) {
return function() {
if(req.readyState === 4) {
callback(req);
}
}
})(xhr);
xhr.open('GET', url, true);
xhr.send('');
}
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment