Skip to content

Instantly share code, notes, and snippets.

@rgrove
Created August 25, 2012 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgrove/3459956 to your computer and use it in GitHub Desktop.
Save rgrove/3459956 to your computer and use it in GitHub Desktop.
function (data) {
var $t='';
with(data){
$t+='<ul class="'+
Y.Escape.html( classNames.list )+
'">\
';
Y.Array.each(items, function (item) {
;$t+='\
<li>'+
Y.Escape.html( item )+
'</li>\
';
});
;$t+='\
</ul>';}
return $t;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment