mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 16:55:54 +01:00
22 lines
482 B
JavaScript
22 lines
482 B
JavaScript
|
importScripts('ajax.js')
|
||
|
|
||
|
var ajax = new AJAX();
|
||
|
var clientid = null;
|
||
|
|
||
|
function loop() {
|
||
|
|
||
|
ajax.get('/topics/test1/' + clientid, function(status, response) {
|
||
|
if (status == 200) {
|
||
|
//console.log(response);
|
||
|
var json = JSON.parse(response);
|
||
|
//console.log(json);
|
||
|
self.postMessage(json);
|
||
|
setTimeout(loop, 500);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
self.onmessage = function(event) {
|
||
|
self.clientid = event.data;
|
||
|
self.loop();
|
||
|
}
|