Skip to content

Instantly share code, notes, and snippets.

@zzggbb
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save zzggbb/ac3e9d0ae5bf48f38ae5 to your computer and use it in GitHub Desktop.

Select an option

Save zzggbb/ac3e9d0ae5bf48f38ae5 to your computer and use it in GitHub Desktop.
function create_dir(dir) {
return
$('<li>').append(
$('<span>').attr('id','dir').text(dir.name).click(util.toggle_dir)
).append(
$('<ul>').append(
dir.files.map(util.create_file).concat(dir.dirs.map(create_dir))
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment