Skip to content

Instantly share code, notes, and snippets.

@eltiare
Created February 5, 2010 23:03
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 eltiare/296356 to your computer and use it in GitHub Desktop.
Save eltiare/296356 to your computer and use it in GitHub Desktop.
<ul class="jqueryFileTree" style="display: none;">
<% @dirs.each do |dir| %>
<li class="directory collapsed"><a href="#" rel="<%= params[:dir] / dir %>"><%= dir %></a></li>
<% end %>
<% @files.each do |file| %>
<li class="file ext_<%= File.extname(file)[1..-1] %>"><a href="#" rel="<%= params[:dir] / file %>"><%= file %></a></li>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment