dojo.workers: a showcase

By techalinho

dojo.workers

Pete Higgins of Dojo has created a nice example, dojo.workers, that puts together coverflow with Dijit and some dojo.query animations.

He even takes out his frustrations with IE 6 as he creates a branch that looks like this ;)

JAVASCRIPT:

  1. var newp = function(){
  2. // IE6 branch of this demo
  3. window.location.href = “http://” +
  4. (confirm(“Is it 2008?”) ?
  5. “webkit.org” : “mozilla.org”) +
  6. “/”;
  7. }
  8. // setup our branch launch:
  9. dojo.addOnLoad((dojo.isIE && dojo.isIE <7 ? newp : init));

Tags: ,

Leave a Reply