CSS Variables are next?

How long have you wanted to name colors and such in your CSS instead of having to use search and replace (which breaks if you share the same colors ;) ? We have a proposal thanks to Daniel Glazman and the ubiquitous David Hyatt. Since the release...

dojo.workers: a showcase Print E-mail
User Rating: / 0
PoorBest 

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.  
  2. var newp = function(){
  3.  // IE6 branch of this demo
  4.  window.location.href = "http://" +
  5.   (confirm("Is it 2008?") ?
  6.    "webkit.org" : "mozilla.org") +
  7.   "/";
  8. }
  9.  
  10. // setup our branch launch:
  11. dojo.addOnLoad((dojo.isIE && dojo.isIE <7 ? newp : init));
  12.  

Read more at: http://feeds.feedburner.com/~r/ajaxian/~3/299010965/dojoworkers-a-showcase.
 
< Prev   Next >