Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit a63ae5f

Browse files
Ravi Kumar Hamsamhevery
authored andcommitted
fix(example): Update counting.html (#648)
1 parent 300dc36 commit a63ae5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

example/counting.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ <h1>Counting Pending Tasks</h1>
3030
const countingZoneSpec = Zone['countingZoneSpec'];
3131
const myCountingZone = Zone.current.fork(countingZoneSpec).fork({
3232
onScheduleTask(parent, current, target, task) {
33-
console.log('Scheduled ' + task.source + ' => ' + task.data.handleId);
3433
parent.scheduleTask(target, task);
34+
console.log('Scheduled ' + task.source + ' => ' + task.data.handleId);
3535
outputElem.innerText = countingZoneSpec.counter();
3636
},
3737
onInvokeTask(parent, current, target, task) {

0 commit comments

Comments
 (0)