Skip to content

Releases: canjs/can-queues

Adding dom-queue

05 Aug 21:32
Compare
Choose a tag to compare

QUNIT2 upgrade

28 May 19:37
Compare
Choose a tag to compare

This updates the tests to use QUnit@2.x.x.

#28

lastTask, runAsTask

31 Oct 02:13
Compare
Choose a tag to compare

Commit: af8ecd0

.lastTask is used to get the last task to execute.

queues.lastTask() //-> {fn, args, context, meta}

.runAsTask(fn, makeReasonLog) is used to run a function such that it can be logged in logStack().

var task = queues.runAsTask(function myTask(){
    queues.logStack()
}, function(){
    return ["myTask called on", this, "with",arguments];
});

IE 11 Compatibility

24 Oct 22:37
Compare
Choose a tag to compare

documentation fixes

15 Aug 20:18
Compare
Choose a tag to compare

Better logs!

27 Oct 15:29
Compare
Choose a tag to compare

Adjusted one of the logs to also show the task, like the others.

Enough for can-observation

04 Oct 20:43
Compare
Choose a tag to compare

A release that supports what can-observation needs.