aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelistmodel/data/workersync.js
blob: 9b8d8fa7f340c3a3549c5b300329acec0e5f5daa (plain)
1
2
3
4
5
6
7
8
WorkerScript.onMessage = function(msg) {
    if (msg.action == 'addItem') {
        msg.model.get(0).level0.append({ 'level1': 33 });
    } else if (msg.action == 'dosync') {
        msg.model.sync();
    }
    WorkerScript.sendMessage({'done': true})
}