Sha256: 1128ea9b3fa12ba91752669e55080e3a33ba4ccab005a350e0a6eeb49e5b5b0d

Contents?: true

Size: 720 Bytes

Versions: 8

Compression:

Stored size: 720 Bytes

Contents

<h1>SWFUpload</h1>

<p>
  <a href="/">SWFUpload</a> | <a href="/default/uploadify">uploadify</a>
</p>

<p>Upload One restricted to 1MB:
  <%= upload_form(@user, true, container_prefix = '', :file_size_limit => '1 MB') %>
</p>

<p>Upload restricted to images:
  <%= upload_form(@user, false, container_prefix = 'a_container_with_a_long_name', :file_types => '*.jpg') %>
</p>

<p>Upload With Background Button using transparent:
  <%= upload_form(@user, false, container_prefix = 'background', :transparent => true) %>
</p>

<h2>Uploaded files:</h2>
<div id="results"></div>
  
<script type='text/javascript'> 
  function upload_completed_callback(data){
    jQuery('#results').append(data);
    return true;
  }
</script>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
uploader-3.1.4 test/rails_test/app/views/default/index.html.erb
uploader-3.1.3 test/rails_test/app/views/default/index.html.erb
uploader-3.1.2 test/rails_test/app/views/default/index.html.erb
uploader-3.1.1 test/rails_test/app/views/default/index.html.erb
uploader-3.1.0 test/rails_test/app/views/default/index.html.erb
uploader-3.0.2 test/rails_test/app/views/default/index.html.erb
uploader-3.0.1 test/rails_test/app/views/default/index.html.erb
uploader-3.0.0 test/rails_test/app/views/default/index.html.erb