Skip to content

Instantly share code, notes, and snippets.

@quickredfox
Created November 3, 2010 01:20
Show Gist options
  • Save quickredfox/660658 to your computer and use it in GitHub Desktop.
Save quickredfox/660658 to your computer and use it in GitHub Desktop.
PURE?
// pulled from example.js
var directive = {
'li': {
'child <- children': {
'a': 'child.name',
'a@onclick':'alert(\'#{child.name}\');',
'div.children': function(ctxt){
return ctxt.child.item.children ? rfn(ctxt.child.item):'';
}
}
}
};
// srlsly NOT pure.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment