summaryrefslogtreecommitdiffstats
path: root/examples/declarative/threading/threadedlistmodel/dataloader.js
blob: d720f09d839466ff6b6ae17775ff7ad5ca7599c5 (plain)
1
2
3
4
5
6
7
8
9
// ![0]
WorkerScript.onMessage = function(msg) {
    if (msg.action == 'appendCurrentTime') {
        var data = {'time': new Date().toTimeString()};
        msg.model.append(data);
        msg.model.sync();   // updates the changes to the list
    }
}
// ![0]