Sha256: b593425bfad7d8aadad36a1405f9dbfa65cfee592ceb4daba931a15e8661d761
Contents?: true
Size: 986 Bytes
Versions: 7
Compression:
Stored size: 986 Bytes
Contents
<% if provider.present? %> <div class="progress" id="loading_progress" aria-live="polite"> <div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 100%;"> 100% Complete </div> </div> <table id="file-list" role="grid" tabindex="-1" title="Choose files to upload from the table below" aria-live="polite"> <thead> <tr role="row" tabindex="-1"> <th role="columnheader">Name</th> <th role="columnheader">Size</th> <th role="columnheader">Kind</th> <th role="columnheader">Modified</th> </tr> </thead> <% provider.contents(browse_path).each_with_index do |file,index| %> <% if is_acceptable?(file) %> <%= render :partial => 'file', :locals => { :file => file, :index => index, :path => browse_everything_engine.contents_path(provider_name,file.id), :parent => params[:parent] } %> <% end %> <% end %> </table> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems